/* ============================================
   Ornate Informatics — Global Stylesheet
   Palette: deep blue, accent blue, signal red
   ============================================ */

:root {
  --blue-900: #0B3D91;
  --blue-700: #1450B5;
  --blue-500: #1E6FD9;
  --blue-100: #E8F0FB;
  --red: #E63946;
  --red-dark: #C1121F;
  --ink: #0F172A;
  --ink-2: #334155;
  --muted: #64748B;
  --line: #E2E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F5F7FA;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow: 0 6px 24px rgba(11,61,145,.08);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
p  { margin: 0 0 1em; color: var(--ink-2); }
a  { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--red); text-decoration: underline; }

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

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

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--blue-900);
  color: #fff;
  font-size: .85rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.topbar a { color: #fff; }
.topbar a:hover { color: #FFD3D3; }
.topbar .contact-mini span { margin-right: 16px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 3px solid var(--blue-900);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--blue-900);
}
.brand:hover { color: var(--blue-900); text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  border-radius: 8px;
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; right: -3px; bottom: -3px;
  width: 10px; height: 10px; background: var(--red); border-radius: 50%;
  border: 2px solid #fff;
}
.brand-logo {
  width: 44px; height: 44px;
  object-fit: contain;
  background: transparent;
  display: block;
  flex-shrink: 0;
}
.site-footer .brand-logo { width: 48px; height: 48px; }
.brand-text small { display: block; font-size: .7rem; font-weight: 500; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.brand-name { display: block; text-transform: lowercase; line-height: 1; }
.brand-name-ornate { color: var(--blue-900); }
.brand-name-informatics { color: var(--red); }
.site-footer .brand-name-ornate,
.site-footer .brand-name-informatics { color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--blue-900); margin: 5px auto;
  transition: .25s;
}

.main-nav > ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 4px;
}
.main-nav .submenu {
  list-style: none;
  margin: 0;
}
.main-nav li { position: relative; }
.main-nav a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  border-radius: var(--radius);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--blue-100);
  color: var(--blue-900);
  text-decoration: none;
}
.main-nav .has-sub > a::after {
  content: "▾"; margin-left: 6px; font-size: .7rem; color: var(--muted);
}
.submenu {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  display: none;
}
.main-nav .has-sub.open > .submenu,
.main-nav .has-sub:focus-within > .submenu { display: block; }
.main-nav .has-sub.open > a::after { transform: rotate(180deg); display: inline-block; }
.submenu a { padding: 8px 12px; font-size: .9rem; font-weight: 500; }
.submenu .sub-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--red); padding: 8px 12px 4px; display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all .2s;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--blue-900); text-decoration: none; }
.btn-blue { background: var(--blue-700); color: #fff; }
.btn-blue:hover { background: var(--blue-900); color: #fff; text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--blue-900);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: auto;
}
.hero > .container { position: relative; z-index: 1; }
.hero::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 6px; height: 100%; background: var(--red);
  z-index: 2;
}
.hero h1 { color: #fff; max-width: 760px; }
.hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border-left: 3px solid var(--red);
  padding: 6px 14px;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero p.lead { font-size: 1.1rem; color: rgba(255,255,255,.92); max-width: 640px; }
.hero-actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: linear-gradient(110deg, var(--blue-900), var(--blue-700));
  color: #fff;
  padding: 60px 0 50px;
  position: relative;
}
.page-hero::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 18%, transparent 18%);
}
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero .crumbs { font-size: .85rem; color: rgba(255,255,255,.8); }
.page-hero .crumbs a { color: #fff; }

/* ---------- Sections ---------- */
section { padding: 60px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--blue-900); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.85); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head .eyebrow {
  color: var(--red); font-size: .8rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; display: block; margin-bottom: 10px;
}

/* ---------- Feature strip (4 columns) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  border-top: 4px solid var(--blue-700);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.feature:nth-child(2n) { border-top-color: var(--red); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .icon {
  width: 56px; height: 56px;
  background: var(--blue-100);
  color: var(--blue-900);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 14px;
  font-size: 24px;
}
.feature:nth-child(2n) .icon { background: #FDE7E9; color: var(--red); }
.feature h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Service cards grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--blue-700);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: var(--blue-500); box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card .num {
  font-family: 'Manrope', sans-serif;
  font-size: .8rem; font-weight: 700;
  color: var(--red); letter-spacing: .12em;
}
.service-card h3 { margin: 8px 0 10px; font-size: 1.2rem; }
.service-card p { font-size: .95rem; }
.service-card .more {
  font-weight: 600; font-size: .9rem; color: var(--blue-700);
}
.service-card .more::after { content: " →"; transition: margin .2s; }
.service-card:hover .more::after { margin-left: 4px; }

/* ---------- Two-col content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ---------- Projects / Our Work ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.project-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0b1220;
  aspect-ratio: 3 / 4;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.project-card:hover img { transform: scale(1.05); }
.project-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  color: #fff;
  background: linear-gradient(to top, rgba(11,61,145,.92) 0%, rgba(11,61,145,.65) 55%, rgba(11,61,145,0) 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.project-card figcaption strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  letter-spacing: .01em;
}
.project-card figcaption span {
  font-size: .82rem;
  opacity: .92;
}
.project-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.project-card:hover::after { transform: scaleX(1); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem; font-weight: 800;
  color: #fff; display: block; line-height: 1;
}
.stat .num span { color: var(--red); }
.stat .label { font-size: .9rem; color: rgba(255,255,255,.8); margin-top: 8px; display: block; }

/* ---------- Testimonial ---------- */
.testimonial {
  background: #fff;
  border-left: 5px solid var(--red);
  padding: 30px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.testimonial blockquote {
  font-size: 1rem; color: var(--ink-2);
  margin: 0 0 18px; font-style: italic;
}
.testimonial cite {
  font-style: normal; font-weight: 700; color: var(--blue-900);
  display: block; font-family: 'Manrope', sans-serif;
}
.testimonial cite small { display: block; font-weight: 500; color: var(--muted); font-size: .8rem; margin-top: 2px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 16px; }
.form-grid .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 6px; display: block; }
input, select, textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: 1rem;
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--blue-500); outline-offset: 1px; border-color: var(--blue-500);
}

/* ---------- Service detail content ---------- */
.content-block {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.content-main h2 { color: var(--blue-900); }
.content-main ul { padding-left: 20px; }
.content-main li { margin-bottom: 8px; color: var(--ink-2); }
.sidebar {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--red);
  align-self: start;
  position: sticky;
  top: 100px;
}
.sidebar h3 { font-size: 1rem; color: var(--blue-900); }
.sidebar ul { list-style: none; padding: 0; margin: 0 0 20px; }
.sidebar li { border-bottom: 1px solid var(--line); }
.sidebar li:last-child { border-bottom: 0; }
.sidebar li a {
  display: block; padding: 10px 0;
  color: var(--ink-2); font-weight: 500; font-size: .9rem;
}
.sidebar li a:hover, .sidebar li a.active { color: var(--red); text-decoration: none; }
.sidebar li a::before { content: "→  "; color: var(--blue-500); }

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.branch-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-500);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.branch-card h3 { font-size: 1rem; color: var(--blue-900); margin: 0 0 8px; }
.branch-card p { font-size: .88rem; color: var(--ink-2); margin: 0 0 8px; line-height: 1.5; }
.branch-card p:last-child { margin-bottom: 0; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(110deg, var(--blue-900), var(--blue-700));
  color: #fff;
  padding: 50px 0;
  text-align: center;
  position: relative;
}
.cta-strip::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--red);
}
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0A2F73;
  color: rgba(255,255,255,.85);
  padding: 60px 0 0;
  font-size: .92rem;
  position: relative;
  overflow: hidden;
}
.footer-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.site-footer > .container,
.site-footer .footer-bottom { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.site-footer h4 {
  color: #fff; font-size: 1rem; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: .1em;
  position: relative; padding-bottom: 10px;
}
.site-footer h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 30px; height: 2px; background: var(--red);
}
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; text-decoration: none; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .85rem;
}
.credentials-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  margin: 36px 0 8px;
}
.group-box {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.duns-box {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
  min-width: 160px;
}
.duns-box:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(30,111,217,.5);
  transform: translateY(-1px);
  text-decoration: none;
}
.duns-badge-img {
  display: block;
  max-height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.group-box:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(229,57,53,.5);
  transform: translateY(-1px);
}
.group-box-logo {
  width: 56px; height: 56px; flex-shrink: 0;
}
.group-box-text {
  display: flex; flex-direction: column; gap: 2px;
}
.group-box-eyebrow {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 600;
}
.group-box-title {
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.05rem; font-weight: 700; color: #fff;
}
.group-box-link {
  font-size: .82rem; color: var(--red); font-weight: 600; margin-top: 2px;
}
.group-box:hover .group-box-link { color: #ff6b6b; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: rgba(255,255,255,.1); border-radius: 50%;
  transition: background .2s;
}
.socials a:hover { background: var(--red); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    padding: 70px 16px 20px;
    overflow-y: auto;
    transition: right .3s;
    z-index: 99;
  }
  .main-nav.open { right: 0; }
  .main-nav > ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 12px 14px; border-radius: var(--radius); }
  .submenu {
    position: static; box-shadow: none; border-top: 0;
    padding: 4px 0 4px 16px; min-width: 0;
    display: block;
    background: var(--bg-soft);
    border-radius: var(--radius);
    margin-top: 4px;
  }
  .nav-toggle { display: block; z-index: 101; position: relative; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .content-block { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .credentials-strip { grid-template-columns: 1fr; gap: 14px; }
  .duns-box { min-width: 0; }
}

@media (max-width: 600px) {
  section { padding: 44px 0; }
  .hero { padding: 60px 0; }
  .feature-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-grid .row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .topbar { font-size: .8rem; }
  .topbar .container { justify-content: space-between; align-items: center; flex-wrap: nowrap; gap: 10px; text-align: left; padding-left: 12px; padding-right: 12px; max-width: 100%; }
  .topbar .contact-mini { display: flex; flex-direction: column; align-items: flex-start; }
  .topbar .contact-mini span { display: block; margin: 2px 0; margin-right: 0; }
  .topbar .container > div:last-child { margin-left: auto; text-align: right; white-space: nowrap; }
}

/* Accessibility */
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--red); color: #fff; padding: 8px 16px;
  z-index: 200; border-radius: var(--radius);
}
.skip-link:focus { top: 8px; }

/* ============================================
   OEM / Technology Partners section
   ============================================ */
.oem-section { background: #fff; }

.oem-group { margin-top: 40px; }
.oem-group:first-of-type { margin-top: 0; }

.oem-group-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.oem-group-label::before,
.oem-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.oem-group-label span {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-900);
  white-space: nowrap;
}

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

.oem-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  height: 110px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.oem-tile img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .78;
  transition: filter .22s ease, opacity .22s ease;
}
.oem-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.oem-tile:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Responsive columns */
@media (max-width: 1024px) {
  .oem-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .oem-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .oem-tile { height: 88px; padding: 12px 14px; }
  .oem-group-label span { font-size: .72rem; letter-spacing: .14em; }
}
@media (max-width: 380px) {
  .oem-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Clients page: Industries grid
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
}
.industry {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.industry-icon {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(20, 80, 181, 0.22);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.industry-icon svg {
  width: 56px;
  height: 56px;
}
.industry:hover .industry-icon {
  transform: translateY(-4px);
  background: var(--blue-900);
  box-shadow: 0 12px 30px rgba(11, 61, 145, 0.32);
}
.industry h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
  max-width: 180px;
}

@media (max-width: 900px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
}
@media (max-width: 560px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
  .industry-icon { width: 88px; height: 88px; }
  .industry-icon svg { width: 44px; height: 44px; }
  .industry h3 { font-size: .95rem; }
}

/* ============================================
   Clients page: Client logo wall (full color)
   ============================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.client-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  height: 130px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.client-tile img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.client-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

@media (max-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .client-tile { height: 100px; padding: 12px 14px; }
}
@media (max-width: 420px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Clients page: Projects card grid
   ============================================ */
.projects-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-card-v2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  border-top: 4px solid var(--blue-700);
}
.project-card-v2:nth-child(4n+2) { border-top-color: var(--red); }
.project-card-v2:nth-child(4n+3) { border-top-color: var(--blue-500); }
.project-card-v2:nth-child(4n+4) { border-top-color: var(--red-dark); }
.project-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.project-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-100);
  padding: 5px 10px;
  border-radius: 4px;
}
.project-card-v2 h3 {
  font-size: 1.15rem;
  margin: 4px 0 2px;
  color: var(--ink);
}
.project-card-v2 p {
  font-size: .95rem;
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
}
.project-card-v2 p small {
  color: var(--muted);
  font-size: .82rem;
  display: block;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .projects-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .projects-cards { grid-template-columns: 1fr; }
}

/* ============================================
   Home: Trusted By compact logo strip
   ============================================ */
.trusted-strip .trusted-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}
.trusted-strip .trusted-head .eyebrow {
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.trusted-logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  align-items: center;
}
.trusted-tile {
  background: #fff;
  border-radius: var(--radius);
  height: 82px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.trusted-tile img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.trusted-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .trusted-logos { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 520px) {
  .trusted-logos { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .trusted-tile { height: 70px; padding: 10px; }
}

/* ===== Open Application CTA (Careers page) ===== */
.open-application {
    background: linear-gradient(110deg, var(--blue-900), var(--blue-700));
    color: #fff;
    padding: 60px 40px;
    border-radius: 14px;
    text-align: center;
}
.open-application .oa-eyebrow {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .18em;
    margin-bottom: 18px;
}
.open-application h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}
.open-application p {
    color: rgba(255,255,255,.85) !important;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.open-application .oa-btn {
    display: inline-block;
    background: #fff;
    color: var(--red);
    padding: 16px 34px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .08em;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.open-application .oa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    color: var(--red);
    text-decoration: none;
}
@media (max-width: 640px) {
    .open-application { padding: 44px 22px; }
}

/* ===== Delivery Model (About page) ===== */
.delivery-model-section .section-head { text-align: center; }

.delivery-flow {
    list-style: none;
    padding: 0;
    margin: 40px 0 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
}
.delivery-stage {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 26px 20px;
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.delivery-stage:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 61, 145, 0.12);
    border-color: var(--blue-500);
}
.delivery-stage .ds-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: var(--blue-100);
    color: var(--blue-900);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.delivery-stage .ds-icon svg { width: 24px; height: 24px; }
.delivery-stage .ds-step {
    display: block;
    color: var(--red);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.delivery-stage h3 {
    color: var(--blue-900);
    font-size: 1.15rem;
    margin: 0 0 12px;
}
.delivery-stage ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .88rem;
    color: var(--ink-2);
    line-height: 1.55;
}
.delivery-stage ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
}
.delivery-stage ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 6px; height: 6px;
    background: var(--blue-500);
    border-radius: 50%;
}
.delivery-stage:not(:last-child)::after {
    content: "\2192";
    position: absolute;
    right: -16px; top: 50%;
    transform: translateY(-50%);
    color: var(--blue-500);
    font-size: 1.6rem;
    font-weight: 700;
    z-index: 2;
    background: var(--bg-soft, #F8FAFC);
    width: 24px;
    text-align: center;
    line-height: 1;
}

@media (max-width: 1024px) {
    .delivery-flow { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .delivery-stage:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
    .delivery-flow { grid-template-columns: 1fr; }
}

/* ===== Value Band ===== */
.value-band {
    margin-top: 30px;
    background: linear-gradient(110deg, var(--blue-900), var(--blue-700));
    color: #fff;
    border-radius: 14px;
    padding: 26px 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.value-band .vb-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 4px 0;
}
.value-band .vb-item + .vb-item {
    border-left: 1px solid rgba(255,255,255,.15);
    padding-left: 18px;
}
.value-band .vb-icon {
    width: 42px; height: 42px;
    flex: 0 0 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.value-band .vb-icon svg { width: 22px; height: 22px; }
.value-band strong {
    display: block;
    font-size: .95rem;
    line-height: 1.25;
    font-weight: 700;
}
.value-band span {
    display: block;
    font-size: .82rem;
    color: rgba(255,255,255,.75);
    line-height: 1.25;
    margin-top: 2px;
}
@media (max-width: 1024px) {
    .value-band { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .value-band .vb-item + .vb-item { border-left: 0; padding-left: 0; }
}
@media (max-width: 560px) {
    .value-band { grid-template-columns: 1fr; padding: 22px; }
}
