:root {
  --dark: #0B1228;
  --navy: #1B2450;
  --blue1: #1A52A0;
  --blue2: #2979C8;
  --light: #C5E4FF;
  --white: #FFFFFF;
  --off: #F5F7FC;
  --gray: #8899AA;
  --muted: #5A6A7A;
  --border: #E2E8F0;
  --text: #1B2450;
  --max: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-wrap {
  background: var(--off);
}

.section-wrap-dark {
  background: var(--dark);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--blue2);
}

.eyebrow.center {
  justify-content: center;
}

.section-title {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-title.light {
  color: #fff;
}

.section-lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 650px;
}

.page-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 70%, var(--blue1) 100%);
  padding: 88px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(41, 121, 200, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(41, 121, 200, .06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-header-inner {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.4px;
  color: #fff;
  margin-bottom: 16px;
}

.page-header p {
  max-width: 620px;
  color: rgba(197, 228, 255, .72);
  font-size: 18px;
  line-height: 1.75;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 74px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-nav .nav-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.brand-text .top {
  font-family: Barlow, Arial, sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 17px;
  letter-spacing: -.3px;
  line-height: 1;
}

.brand-text .sub {
  font-family: Barlow, Arial, sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  color: var(--blue2);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
  letter-spacing: .2px;
}

.nav-links a:hover, .nav-links a.active {
  background: var(--off);
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher, .mobile-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

.lang-switcher a, .mobile-lang-switcher a {
  font-family: Barlow, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: .3px;
  transition: all .2s;
}

.lang-switcher a:hover,
.lang-switcher a.active,
.mobile-lang-switcher a:hover,
.mobile-lang-switcher a.active {
  background: var(--off);
  color: var(--navy);
}

.nav-cta {
  font-family: Barlow, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: 10px 22px;
  border-radius: 999px;
  transition: all .2s;
}

.nav-cta:hover {
  background: var(--blue1);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  position: relative;
  content: "";
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
}

.mobile-panel.open {
  display: block;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  padding: 14px 24px 18px;
}

.mobile-links a {
  padding: 12px 0;
  color: var(--muted);
  font-size: 14px;
}

.mobile-links a.active {
  color: var(--navy);
  font-weight: 600;
}

.mobile-lang-switcher {
  display: none;
  margin-top: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(41, 121, 200, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(41, 121, 200, .05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 121, 200, .16) 0%, transparent 68%);
}

.hero-glow2 {
  position: absolute;
  bottom: -250px;
  left: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 82, 160, .11) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 76px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 26px;
}

.hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--blue2);
}

.hero h1 {
  font-family: Barlow, Arial, sans-serif;
  font-size: clamp(42px, 5.3vw, 70px);
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -1.6px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue2), var(--light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(197, 228, 255, .76);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary, .btn-white, .btn-ghost {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.btn-primary {
  font-family: Barlow, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--blue2);
  padding: 14px 32px;
  border-radius: 999px;
  letter-spacing: .3px;
}

.btn-primary:hover {
  background: var(--blue1);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(41, 121, 200, .35);
}

.btn-ghost {
  font-family: Barlow, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .15);
  background: transparent;
  padding: 14px 28px;
  border-radius: 999px;
}

.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
}

.btn-white {
  font-family: Barlow, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  padding: 14px 32px;
  border-radius: 999px;
}

.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px 20px;
}

.stat-card.wide {
  grid-column: span 2;
}

.stat-card .num {
  font-family: Barlow, Arial, sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-card .num span {
  color: var(--blue2);
}

.stat-card .lbl {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(197, 228, 255, .6);
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 44px;
  overflow: hidden;
  min-width: 0;
}

.trust-label {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  gap: 18px;
  flex: 1;
  min-width: 0;
  animation: trust-slide 12s linear infinite;
  will-change: transform;
}

.trust-logo-slot {
  flex: 0 0 auto;
  min-width: 160px;
  height: 72px;
  min-height: 72px;
  border-radius: 10px;
  background: #eef2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  overflow: hidden;
}

.trust-logo-slot img, .trust-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes trust-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-30%);
  }

}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.pillar, .value-card, .notice {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.pillar {
  padding: 20px;
}

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.pillar-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue2);
  fill: none;
  stroke-width: 2;
}

.pillar h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pillar p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.about-card-stack {
  position: relative;
  height: 390px;
}

.about-card-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 286px;
  height: 324px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--dark), var(--navy));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(27, 36, 80, .18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-card-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 232px;
  min-height: 184px;
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.about-card-accent .big {
  font-family: Barlow, Arial, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--navy);
}

.about-card-accent .lbl {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}

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

.service-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 36px 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  transition: all .3s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue2), var(--light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(27, 36, 80, .08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue2);
  fill: none;
  stroke-width: 1.7;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.2px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--blue1);
  background: #EEF4FF;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .2px;
}

.value-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
}

.value-num {
  font-family: Barlow, Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--off);
  margin-bottom: 6px;
}

.value-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.process-intro {
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue2), var(--light), var(--blue2));
  opacity: .3;
}

.process-step {
  padding: 0 20px;
  text-align: center;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--blue2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  font-family: Barlow, Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue2);
}

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--navy);
  height: 300px;
  transition: transform .3s;
}

.project-card:hover {
  transform: scale(1.01);
}

.project-card.tall {
  grid-column: span 2;
  height: 340px;
}

.project-card.feature-secondary {
  height: 340px;
}

.project-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark), var(--navy));
}

.project-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(41, 121, 200, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(41, 121, 200, .07) 1px, transparent 1px);
  background-size: 30px 30px;
}

.project-tag {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .1);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
}

.project-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(11, 18, 40, .96), transparent);
}

.project-sector {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 8px;
}

.project-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.3px;
}

.project-content p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(197, 228, 255, .65);
}

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

.industry-card {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.industry-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(41, 121, 200, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue2);
  fill: none;
  stroke-width: 1.7;
}

.industry-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(197, 228, 255, .55);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tech-slot, .customer-slot {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tech-slot {
  aspect-ratio: 1.6;
  padding: 18px;
}

.customer-slot {
  aspect-ratio: 2;
}

.tech-slot span, .customer-slot span {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: .5px;
}

.tech-slot span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.tech-slot img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all .2s;
}

.job-row:hover {
  border-color: var(--blue2);
  box-shadow: 0 8px 30px rgba(41, 121, 200, .08);
}

.job-info {
  flex: 1;
}

.job-dept {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 6px;
}

.job-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.job-loc {
  font-size: 13px;
  color: var(--muted);
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.job-badge {
  padding: 5px 12px;
  border-radius: 20px;
  background: #EEF4FF;
  font-size: 11px;
  font-weight: 500;
  color: var(--blue1);
  white-space: nowrap;
}

.job-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}

.job-row:hover .job-arrow {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all .3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(27, 36, 80, .08);
}

.blog-thumb {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, var(--dark), var(--navy));
}

.blog-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(41, 121, 200, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(41, 121, 200, .08) 1px, transparent 1px);
  background-size: 25px 25px;
}

.blog-cat {
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 20px;
  background: rgba(11, 18, 40, .7);
  padding: 5px 10px;
  color: var(--blue2);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blog-body {
  padding: 24px;
}

.blog-date {
  font-size: 11px;
  letter-spacing: .5px;
  color: var(--gray);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue2);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.contact-info>p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue2);
  fill: none;
  stroke-width: 1.7;
}

.ci-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.ci-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

.ci-content {
  width: 100%;
}

.ci-subvalue {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.contact-item-location {
  align-items: flex-start;
}

.contact-item-location .ci-value:not(.ci-value-primary) {
  display: none;
}

.contact-map {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: Barlow, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
}

.contact-map-link:hover {
  background: var(--blue1);
}

.contact-note {
  margin-top: 48px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--off);
}

.contact-note h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-note p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.contact-form {
  padding: 44px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--off);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .3px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue2);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: Barlow, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  transition: all .25s;
}

.form-submit:hover {
  background: var(--blue2);
  transform: translateY(-1px);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue1) 100%);
  padding: 84px 0;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(41, 121, 200, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(41, 121, 200, .1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 16px;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(197, 228, 255, .75);
  font-size: 17px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--dark);
  padding: 60px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(197, 228, 255, .5);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .2px;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(197, 228, 255, .5);
  transition: color .2s;
}

.footer-col a:hover {
  color: rgba(197, 228, 255, .9);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12px;
  letter-spacing: .3px;
  color: rgba(197, 228, 255, .3);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(197, 228, 255, .5);
}

.social-btn:hover {
  border-color: var(--blue2);
  background: rgba(41, 121, 200, .15);
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-48 {
  margin-top: 48px;
}

.notice {
  padding: 16px 18px;
  border: 1px dashed var(--border);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width:1100px) {
  .hero-inner, .grid-2, .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-grid-3, .tech-grid, .industry-grid, .blog-grid, .customers-grid, .value-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card.tall {
    grid-column: span 2;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .process-steps::before {
    display: none;
  }

  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width:860px) {
  .nav-links, .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 40px 0 70px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-pillars, .service-grid-2, .service-grid-3, .projects-grid, .tech-grid, .customers-grid, .industry-grid, .blog-grid, .value-grid-4 {
    grid-template-columns: 1fr;
  }

  .project-card.tall {
    grid-column: span 1;
    height: 320px;
  }

  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-lang-switcher {
    display: inline-flex;
  }

  .trust-logos {
    grid-template-columns: 1fr 1fr;
  }

  .about-card-stack {
    height: auto;
  }

  .about-card-main, .about-card-accent {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
  }

  .about-card-accent {
    margin-top: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top, .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

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

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

}

@media (max-width:520px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 78px 0;
  }

  .page-header {
    padding: 72px 0;
  }

  .hero-actions, .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-ghost, .btn-white {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-card.wide {
    grid-column: span 1;
  }

  .trust-logos {
    grid-template-columns: 1fr;
  }

}
