/* ============================================================
   NESHA TECHNOLOGIES  Design System  (clean rebuild)
   ============================================================ */

/*  CSS Variables  */
:root {
  --navy:       #0A1B3D;
  --navy-deep:  #030a1a;
  --blue:       #1565FF;
  --cyan:       #00C2FF;
  --slate:      #64748B;
  --gray-line:  #E2E8F0;
  --bg:         #FAFBFD;          /* page canvas */
  --bg-alt:     #F1F5F9;          /* subtle alternating sections */
  --chrome:     #FAFBFD;          /* nav / drawer / footer (always light for logo) */
  --bg-card:    #FFFFFF;
  --white:      #FFFFFF;
  --text:       #0F172A;
  --text-muted: #64748B;
  --success:    #00B86B;

  --grad-brand: linear-gradient(135deg,#0A1B3D 0%,#1565FF 55%,#00C2FF 100%);
  --grad-cta:   linear-gradient(135deg,#1565FF 0%,#00C2FF 100%);
  --grad-glow:  radial-gradient(circle at 30% 20%,rgba(0,194,255,.3),transparent 55%);
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  /* Aliases used across HTML pages */
  --gradient-brand: var(--grad-brand);
  --gradient-cta:   var(--grad-cta);
  --font-display:   var(--font-head);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow:    0 10px 30px -12px rgba(10,27,61,.15);
  --shadow-lg: 0 22px 44px -16px rgba(10,27,61,.22);
  --shadow-card-hover: 0 28px 56px -16px rgba(10,27,61,.25);
  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-smooth: cubic-bezier(.34, 1.56, .64, 1);
  --ease-bounce: cubic-bezier(.68, -0.55, .265, 1.55);
  --max-w:     1280px;
}

/*  Dark Mode Variables  */
[data-theme="dark"] {
  --bg:         #060f26;
  --bg-alt:     #040d1e;
  --bg-card:    #0e1f44;
  --text:       #E8F0FE;
  --text-muted: #94a3b8;
  --gray-line:  #1b2c52;
  --shadow:     0 10px 30px -12px rgba(0,0,0,.4);
  --shadow-lg:  0 22px 44px -16px rgba(0,0,0,.5);
  --shadow-card-hover: 0 28px 56px -16px rgba(0,0,0,.6);
}

/* ========== ANIMATION KEYFRAMES ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse-gentle {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(4);
  }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(21, 101, 255, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(21, 101, 255, 0); }
}

@keyframes slideRight {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideLeft {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes skeleton-loading {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

/*  Base  */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background .3s var(--ease), color .3s var(--ease);
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5 { color: #ffffff; }
p { margin: 0 0 1rem; }

.container-xl {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.section-xs  { padding: 40px 0; }
@media(max-width:768px){
  .section   { padding: 60px 0; }
  .section-sm{ padding: 44px 0; }
}

/*  Typography helpers  */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 18px; height: 2px;
  background: var(--grad-cta); border-radius: 2px;
}
.eyebrow-center { justify-content: center; }
.lead { font-size: 1.08rem; color: var(--text-muted); line-height: 1.75; }
[data-theme="dark"] .lead { color: rgba(255,255,255,.65); }
.text-grad {
  background: var(--grad-cta);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-muted { color: var(--text-muted); }
[data-theme="dark"] .text-muted { color: rgba(255,255,255,.55); }
.text-slate { color: var(--slate); }
[data-theme="dark"] .text-slate { color: var(--text-muted); }
.text-navy { color: var(--navy); }
[data-theme="dark"] .text-navy { color: #fff; }

/*  Section head  */
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; max-width: 660px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 1rem; margin: 0; }
[data-theme="dark"] .section-head p { color: rgba(255,255,255,.6); }

/*  Buttons  */
.btn {
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative; overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  cursor: pointer;
}
.btn::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.btn:active::before {
  animation: ripple .6s ease-out;
}
.btn:hover { 
  transform: translateY(-2px);
  letter-spacing: .3px;
}
.btn-primary {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 10px 22px -8px rgba(21,101,255,.5);
}
.btn-primary:hover { 
  box-shadow: 0 16px 32px -8px rgba(21,101,255,.65);
  animation: none;
}
.btn-primary:active { 
  transform: translateY(0);
}
.btn-outline {
  background: transparent; color: var(--navy);
  border-color: var(--gray-line);
}
.btn-outline:hover { 
  border-color: var(--blue); 
  color: var(--blue); 
  background: rgba(21, 101, 255, 0.03);
}
[data-theme="dark"] .btn-outline { color: #fff; border-color: var(--gray-line); }
[data-theme="dark"] .btn-outline:hover { border-color: var(--blue); color: var(--cyan); background: rgba(0, 194, 255, 0.05); }
.btn-ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: #fff; }
/* White CTA on navy / gradient bands (roadmap, partner, etc.) */
.btn-on-dark,
.cta-band .actions .btn:not(.btn-ghost):not(.btn-outline),
.cta-band .cta-actions .btn:not(.btn-ghost):not(.btn-outline) {
  background: #fff;
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 10px 22px -10px rgba(10, 27, 61, .35);
}
.btn-on-dark:hover,
.cta-band .actions .btn:not(.btn-ghost):not(.btn-outline):hover,
.cta-band .cta-actions .btn:not(.btn-ghost):not(.btn-outline):hover {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 28px -10px rgba(21, 101, 255, .35);
}
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; letter-spacing: .4px; }
.btn i.arrow { transition: transform .22s var(--ease); }
.btn:hover i.arrow { transform: translateX(4px); }

/* Button disabled state */
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/*  Navbar — match logo-dark.jpg canvas */
.nesha-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: var(--chrome);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 8px 24px -12px rgba(10, 27, 61, .1);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nesha-nav.is-scrolled {
  padding: 8px 0;
  background: var(--chrome);
}
/* Keep light chrome in dark mode so logo-dark stays readable */
[data-theme="dark"] .nesha-nav,
[data-theme="dark"] .nesha-nav.is-scrolled {
  background: var(--chrome);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 8px 24px -12px rgba(10, 27, 61, .1);
}
[data-theme="dark"] .nesha-nav .nav-links > li > a { color: var(--navy) !important; }
[data-theme="dark"] .nesha-nav .nav-links > li > a:hover { color: var(--navy) !important; background: rgba(10, 27, 61, .06); }
[data-theme="dark"] .nesha-nav .theme-toggle,
[data-theme="dark"] .nesha-nav .nav-burger { border-color: var(--gray-line); color: var(--navy); }

/* Logo */
.brand-logo { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo img { height: 96px; width: auto; max-width: none; display: block; transition: opacity .2s; object-fit: contain; }
.nesha-nav .logo-img-white { display: none !important; }
.nesha-nav .logo-img-dark,
.nesha-nav .logo-img-single { display: block !important; }
/* Footer always dark/transparent logo on grey footer */
.site-footer .logo-img-white { display: none !important; }
.site-footer .logo-img-dark,
.site-footer .logo-img-single { display: block !important; }

/* Dark theme navbar: keep logo-dark.jpg visible */
[data-theme="dark"] .nesha-nav .logo-img-white { display: none !important; }
[data-theme="dark"] .nesha-nav .logo-img-dark,
[data-theme="dark"] .nesha-nav .logo-img-single { display: block !important; }

/* Navbar container */
.nesha-nav .container-xl {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links > li {
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500;
  color: var(--navy) !important;
  transition: color .24s var(--ease), background .24s var(--ease), transform .24s var(--ease);
}
.nav-links > li > a:hover { color: var(--navy) !important; background: rgba(10, 27, 61, .06); }
.nav-links > li > a.active { color: var(--navy) !important; font-weight: 600; background: rgba(10, 27, 61, .06); }
.nav-links > li > a i { font-size: .6rem; transition: transform .24s var(--ease-smooth); opacity: .6; }
.nav-links > li:hover > a i { transform: rotate(180deg) scale(1.1); opacity: 1; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--gray-line);
  background: transparent; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: border-color .24s var(--ease), color .24s var(--ease), background .24s var(--ease), transform .24s var(--ease-smooth);
  cursor: pointer;
}
.theme-toggle:hover { 
  border-color: var(--blue); 
  color: var(--blue); 
  background: rgba(21, 101, 255, .06);
  transform: rotate(180deg) scale(1.05);
}
.theme-toggle:active {
  transform: rotate(180deg) scale(0.95);
}
.nav-burger { display: none; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(800px, 90vw);
  background: var(--bg-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 56px -16px rgba(10,27,61,.28);
  padding: 24px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .24s var(--ease-smooth), transform .24s var(--ease-smooth), visibility .24s var(--ease-smooth);
  z-index: 100;
}
.nav-links > li:hover .mega,
.nav-links > li:focus-within .mega,
.nav-links > li.open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
[data-theme="dark"] .mega { background: var(--bg-card); border-color: var(--gray-line); }
.mega h6 { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 12px; }
.mega-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 9px 8px; border-radius: 8px;
  transition: background .24s var(--ease), transform .24s var(--ease-smooth);
}
.mega-item:hover { 
  background: var(--bg); 
  transform: translateX(4px);
}
[data-theme="dark"] .mega-item:hover { background: #162544; }
.mega-item .ic {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: var(--bg); border: 1px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: .85rem;
}
[data-theme="dark"] .mega-item .ic { background: #162544; border-color: #243a6b; color: var(--cyan); }
.mega-item strong { display: block; font-size: .88rem; color: var(--navy); font-family: var(--font-head); }
[data-theme="dark"] .mega-item strong { color: #fff; }
.mega-item span { font-size: .76rem; color: var(--text-muted); }
.mega-feature {
  background: var(--grad-brand); border-radius: var(--radius-sm);
  padding: 20px; color: #fff; position: relative; overflow: hidden;
}
.mega-feature::after { content: ""; position: absolute; inset: 0; background: var(--grad-glow); pointer-events: none; }
.mega-feature h6 { color: rgba(255,255,255,.65); position: relative; }
.mega-feature p { font-size: .84rem; color: rgba(255,255,255,.8); margin: 8px 0 14px; position: relative; }
.mega-feature a { position: relative; font-size: .82rem; font-weight: 600; color: #fff; display: inline-flex; align-items: center; gap: 6px; }

/* Mobile drawer */
.drawer-overlay {
  position: fixed; inset: 0;
  background: linear-gradient(180deg, rgba(3,10,26,.72), rgba(6,15,38,.86));
  backdrop-filter: blur(8px);
  z-index: 1290; opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed; top: 12px; right: 12px; bottom: 12px; width: min(92vw, 390px);
  background: var(--chrome);
  border: 1px solid var(--gray-line);
  border-radius: 28px;
  z-index: 1300; overflow-y: auto; overflow-x: hidden;
  padding: 18px 16px 20px; transform: translateX(110%);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
  box-shadow: -28px 0 60px rgba(6,15,38,.18);
  color: var(--navy);
}
.mobile-drawer.open { transform: translateX(0); }
[data-theme="dark"] .mobile-drawer {
  background: var(--chrome);
  border-color: var(--gray-line);
  color: var(--navy);
}
.mobile-drawer::before { display: none; }
.close-drawer {
  position: absolute; top: 14px; right: 14px;
  width: 42px; height: 42px; border-radius: 14px;
  border: 1px solid var(--gray-line); background: var(--chrome);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
  box-shadow: 0 8px 20px rgba(6,15,38,.06);
}
.close-drawer:hover { transform: rotate(90deg); border-color: rgba(10,27,61,.2); color: var(--navy); }
[data-theme="dark"] .close-drawer {
  border-color: var(--gray-line);
  color: var(--navy);
  background: var(--chrome);
}
[data-theme="dark"] .close-drawer:hover { color: var(--navy); border-color: rgba(10,27,61,.2); }
.mobile-drawer .brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  margin: 8px 50px 20px 0 !important;
  border-radius: 14px;
  background: var(--chrome);
  border: 1px solid transparent;
}
[data-theme="dark"] .mobile-drawer .brand-logo {
  background: var(--chrome);
  border-color: transparent;
}
.mobile-drawer .brand-logo img { filter: none; }
.mobile-drawer .drawer-link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 14px; margin-bottom: 10px; font-weight: 700; font-family: var(--font-head);
  font-size: .94rem; border: 1px solid var(--gray-line); border-radius: 16px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 24px -18px rgba(10,27,61,.12);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .mobile-drawer .drawer-link {
  color: var(--navy);
  border-color: var(--gray-line);
  background: #fff;
}
.mobile-drawer .drawer-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 27, 61, .05);
  opacity: 0;
  transition: opacity .24s var(--ease);
}
.mobile-drawer .drawer-link:hover::before,
.mobile-drawer .drawer-link.active::before { opacity: 1; }
.mobile-drawer .drawer-sub { padding: 4px 4px 10px 12px; display: none; margin: -2px 0 8px 6px; border-left: 2px solid rgba(10,27,61,.12); }
.mobile-drawer .drawer-sub.open { display: block; }
.mobile-drawer .drawer-sub a {
  display: block;
  padding: 11px 12px;
  margin: 0 0 8px;
  font-size: .9rem;
  color: var(--slate);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 14px;
}
.mobile-drawer .drawer-sub a:hover { color: var(--navy); background: rgba(10,27,61,.05); border-color: var(--gray-line); transform: translateX(3px); }
[data-theme="dark"] .mobile-drawer .drawer-sub a { color: var(--slate); }
.mobile-drawer .btn {
  margin-top: 16px; width: 100%; justify-content: center;
  min-height: 48px; border-radius: 14px;
}
.mobile-drawer .drawer-toggle i { transition: transform .2s var(--ease); }
.mobile-drawer .drawer-toggle[aria-expanded="true"] i { transform: rotate(180deg); }

/*  Page header (inner pages)  */
.page-header {
  background: var(--navy); color: #fff;
  padding: 150px 0 64px; position: relative; overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: 0; background: var(--grad-glow);
  pointer-events: none;
}
.page-header .container-xl { position: relative; z-index: 1; }
[data-theme="dark"] .page-header { background: var(--navy-deep); }
.breadcrumb-row {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 16px;
}
.breadcrumb-row a { color: rgba(255,255,255,.7); }
.breadcrumb-row a:hover { color: #fff; }
.breadcrumb-row i { font-size: .55rem; }
.page-header h1 {
  color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 14px; max-width: 760px;
}
.page-header p { color: rgba(255,255,255,.65); max-width: 600px; font-size: 1rem; margin: 0; }
.page-header .hero-cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/*  Cards  */
.card {
  background: var(--bg-card); border: 1px solid var(--gray-line);
  border-radius: var(--radius-md); padding: 28px;
  transition: transform .3s var(--ease-smooth), box-shadow .3s var(--ease-smooth), border-color .28s var(--ease), background-color .24s var(--ease);
  position: relative;
  will-change: transform;
}
.card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-card-hover); 
  border-color: rgba(21, 101, 255, 0.2);
}
[data-theme="dark"] .card { background: var(--bg-card); border-color: var(--gray-line); }
[data-theme="dark"] .card:hover { 
  box-shadow: 0 28px 56px rgba(0, 194, 255, 0.15); 
  border-color: rgba(0, 194, 255, 0.2);
}
.card .ic {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--bg-alt); border: 1px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.25rem; margin-bottom: 18px;
  flex-shrink: 0;
  transition: all .3s var(--ease-smooth);
}
.card:hover .ic { 
  background: var(--grad-cta); 
  color: #fff; 
  border-color: transparent;
  transform: scale(1.1) rotate(5deg);
}
[data-theme="dark"] .card .ic { background: rgba(0,194,255,.08); border-color: var(--gray-line); color: var(--cyan); }
.card h3, .card h4 { 
  margin-bottom: 10px; 
  font-size: 1.08rem;
  transition: color .24s var(--ease);
}
.card p { 
  color: var(--text-muted); 
  font-size: .9rem; 
  margin-bottom: 14px;
  line-height: 1.7;
}
[data-theme="dark"] .card p { color: rgba(255,255,255,.6); }
.card .more {
  font-size: .83rem; font-weight: 600; color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .24s var(--ease);
}
.card .more i { 
  transition: transform .24s var(--ease);
  display: inline-block;
}
.card:hover .more i { 
  transform: translateX(5px) rotate(10deg);
}
.card-dark {
  background: var(--navy); border-color: transparent; color: #fff;
}
.card-dark p { color: rgba(255,255,255,.65) !important; }
.card-dark h3, .card-dark h4 { color: #fff !important; }
.card-dark .ic { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: var(--cyan) !important; }
.card-dark:hover { 
  background: #102448;
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 194, 255, 0.2);
}
[data-theme="dark"] .card-dark { background: var(--navy-deep); }
.card .num {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-head); font-weight: 800;
  font-size: .75rem; color: var(--gray-line);
  opacity: 0.3;
  transition: opacity .24s var(--ease);
}
.card:hover .num { opacity: 0.6; }

/* Step cards */
.step-card {
  background: var(--bg-card); border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-md); padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
[data-theme="dark"] .step-card { background: var(--bg-card); border-color: var(--gray-line); }
[data-theme="dark"] .step-card:hover { border-color: var(--cyan); }
.step-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: 3.2rem; line-height: 1; color: var(--blue);
  opacity: .1; position: absolute; top: 14px; right: 18px;
}
.step-card .ic {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--grad-cta); display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; margin-bottom: 16px;
}
.step-card h4 { font-size: 1rem; margin-bottom: 8px; }
.step-card p  { color: var(--text-muted); font-size: .88rem; margin: 0; }
[data-theme="dark"] .step-card p { color: rgba(255,255,255,.55); }

/*  Grid layouts  */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.g2h { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media(max-width:1024px){
  .g4 { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px){
  .g2,.g3,.g4,.g2h { grid-template-columns: 1fr !important; gap: 16px; }
  .g2h { gap: 40px; }
}

/*  Stats band  */
.stats-band {
  background: var(--navy); padding: 64px 0; position: relative; overflow: hidden;
}
.stats-band::before { content: ""; position: absolute; inset: 0; background: var(--grad-glow); }
[data-theme="dark"] .stats-band { background: var(--navy-deep); }
.stats-band .container-xl { position: relative; }
.stat-item { text-align: center; }
.stat-item b {
  display: block; font-family: var(--font-head);
  font-size: clamp(2rem,4vw,2.8rem);
  background: var(--grad-cta); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.stat-item span { font-size: .85rem; color: rgba(255,255,255,.55); }

/*  Why rows  */
.why-row {
  display: flex; gap: 16px; padding: 20px 0;
  border-top: 1px solid var(--gray-line);
}
.why-row:last-child { border-bottom: 1px solid var(--gray-line); }
[data-theme="dark"] .why-row { border-color: var(--gray-line); }
.why-row .ic {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--bg); border: 1px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0; font-size: 1.05rem;
}
[data-theme="dark"] .why-row .ic { background: #162544; border-color: #243a6b; color: var(--cyan); }
.why-row h4 { font-size: 1rem; margin-bottom: 5px; }
.why-row p  { margin: 0; color: var(--text-muted); font-size: .9rem; }
[data-theme="dark"] .why-row p { color: rgba(255,255,255,.55); }

/*  Timeline  */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 4px; bottom: 4px;
  width: 2px; background: var(--gray-line); border-radius: 2px;
}
[data-theme="dark"] .timeline::before { background: var(--gray-line); }
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item::before {
  content: ""; position: absolute; left: -32px; top: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--grad-cta); border: 3px solid var(--bg);
}
[data-theme="dark"] .timeline-item::before { border-color: #060f26; }
.timeline-item h4 { font-size: .98rem; margin-bottom: 5px; }
.timeline-item p  { color: var(--text-muted); font-size: .88rem; margin: 0; }
[data-theme="dark"] .timeline-item p { color: rgba(255,255,255,.55); }

/*  FAQ  */
.faq-item { border-bottom: 1px solid var(--gray-line); padding: 20px 0; }
[data-theme="dark"] .faq-item { border-color: var(--gray-line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; cursor: pointer;
}
.faq-q h3, .faq-q h4 { margin: 0; font-size: .98rem; font-weight: 600; }
[data-theme="dark"] .faq-q h3, [data-theme="dark"] .faq-q h4 { color: #fff; }
.faq-q i { color: var(--blue); flex-shrink: 0; transition: transform .28s var(--ease); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { color: var(--text-muted); font-size: .9rem; padding-top: 12px; margin: 0; }
[data-theme="dark"] .faq-a p { color: rgba(255,255,255,.6); }

/*  Insight (blog) cards  */
.insight-card {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--gray-line); background: var(--bg-card);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
[data-theme="dark"] .insight-card { background: var(--bg-card); border-color: var(--gray-line); }
.insight-thumb {
  height: 170px; display: flex; align-items: center; justify-content: center;
  background: var(--grad-brand);
}
.insight-thumb i { font-size: 2.2rem; color: rgba(255,255,255,.4); }
.insight-body { padding: 20px; }
.insight-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue);
}
[data-theme="dark"] .insight-tag { color: var(--cyan); }
.insight-body h4 { font-size: .98rem; margin: 9px 0 10px; }
[data-theme="dark"] .insight-body h4 { color: #fff; }
.insight-meta {
  display: flex; gap: 8px; align-items: center;
  font-size: .76rem; color: var(--text-muted);
}

/*  Testimonials  */
.testi-hero {
  background: var(--navy); padding: 80px 0; position: relative; overflow: hidden;
}
.testi-hero::before { content: ""; position: absolute; inset: 0; background: var(--grad-glow); }
[data-theme="dark"] .testi-hero { background: var(--navy-deep); }
.testi-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 30px; position: relative; height: 100%;
}
.testi-stars { color: #FFB02E; font-size: .85rem; margin-bottom: 14px; }
.testi-quote { color: rgba(255,255,255,.85); font-size: .98rem; line-height: 1.7; margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-cta); display: flex; align-items: center;
  justify-content: center; color: #fff; font-family: var(--font-head); font-weight: 700;
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: .9rem; color: #fff; }
.testi-person span   { font-size: .76rem; color: rgba(255,255,255,.5); }
.swiper-pagination-bullet { background: rgba(255,255,255,.35) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--cyan) !important; }

/*  CTA band  */
.cta-band {
  background: var(--grad-brand); border-radius: var(--radius-lg);
  padding: 60px 56px; margin: 0 24px; color: #fff;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; background: var(--grad-glow);
  pointer-events: none; z-index: 0;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem,2.8vw,2rem); margin-bottom: 8px; }
.cta-band p  { color: rgba(255,255,255,.7); margin: 0; max-width: 480px; }
.cta-band .cta-actions,
.cta-band .actions { position: relative; z-index: 2; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .actions .btn,
.cta-band .cta-actions .btn { pointer-events: auto; }
@media(max-width:768px){
  .cta-band { padding: 36px 24px; margin: 0 12px; }
  .cta-band h2 { font-size: 1.4rem; }
}

/*  Hero video wrap  */
.hero-video-wrap {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--navy);
}
.hero-video-wrap canvas {
  position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  pointer-events: none;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(10,27,61,.82),rgba(10,27,61,.45)); }
.hero-video-content { position: relative; z-index: 2; width: 100%; padding: 140px 0 90px; }
@media(max-width:768px){ .hero-video-content { padding: 110px 0 60px; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: 7px 16px 7px 8px; font-size: .78rem;
  color: rgba(255,255,255,.85); margin-bottom: 24px; backdrop-filter: blur(6px);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 4px rgba(0,184,107,.2);
}
.hero-video-content h1 {
  color: #fff; font-size: clamp(2.2rem,5vw,3.8rem);
  max-width: 820px; margin: 0 auto 20px; line-height: 1.12;
}
.hero-video-content .lead { color: rgba(255,255,255,.7); max-width: 540px; margin: 0 auto 36px; font-size: 1.1rem; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 2rem; color: #fff; }
.hero-stat span { font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; }
.hero-divider { width: 1px; height: 36px; background: rgba(255,255,255,.18); }

/*  Service expand tiles  */
.sv-row { display: flex; overflow: hidden; }
.sv-tile {
  position: relative; flex: 1; min-height: 320px;
  overflow: hidden; cursor: pointer;
  transition: flex .55s cubic-bezier(.22,.61,.36,1);
}
.sv-tile:hover { flex: 2.4; }
.sv-fallback {
  position: absolute; inset: 0;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,.25);
}
.sv-grad { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(10,27,61,.9) 0%,rgba(10,27,61,.25) 55%,transparent 100%); }
.sv-label {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  display: flex; align-items: center; gap: 10px;
}
.sv-label .lico {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: var(--grad-cta); display: flex; align-items: center;
  justify-content: center; font-size: .85rem;
}
.sv-desc {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(0deg,rgba(10,27,61,.96),transparent);
  color: rgba(255,255,255,.7); font-size: .82rem; line-height: 1.6;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s .1s, transform .35s .1s;
}
.sv-tile:hover .sv-desc { opacity: 1; transform: translateY(0); }
.sv-pulse {
  position: absolute; top: 14px; right: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0,194,255,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(0,194,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,194,255,0); }
}
@media(max-width:768px){
  .sv-row { flex-direction: column; }
  .sv-tile {
    flex: none !important;
    min-height: 0;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .sv-tile .sv-fallback {
    position: relative;
    height: 140px;
    flex: none;
  }
  .sv-tile .sv-grad { display: none; }
  .sv-tile .sv-label {
    position: static;
    padding: 14px 16px 0;
    color: var(--navy);
  }
  [data-theme="dark"] .sv-tile .sv-label { color: #fff; }
  .sv-tile .sv-desc {
    opacity: 1;
    transform: none;
    position: static;
    padding: 8px 16px 18px;
    background: transparent;
    color: var(--text-muted);
  }
}

/*  Project cards  */
.proj-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--gray-line);
  height: 100%;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.proj-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
[data-theme="dark"] .proj-card { background: var(--bg-card); border-color: var(--gray-line); }
.proj-thumb {
  height: 190px; background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.proj-thumb i { font-size: 2.8rem; color: rgba(255,255,255,.3); }
.proj-industry {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.93); color: var(--navy);
  font-size: .68rem; font-weight: 700; padding: 4px 11px;
  border-radius: 999px; letter-spacing: .04em; font-family: var(--font-head);
}
.proj-body { padding: 22px; }
.proj-body h4 { font-size: 1rem; margin-bottom: 8px; }
[data-theme="dark"] .proj-body h4 { color: #fff; }
.proj-desc { font-size: .84rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.proj-results { list-style: none; padding: 0; margin: 0; }
.proj-results li { display: flex; gap: 8px; font-size: .82rem; color: var(--text-muted); margin-bottom: 6px; }
[data-theme="dark"] .proj-results li { color: rgba(255,255,255,.55); }
.proj-results li i { color: var(--success); margin-top: 2px; font-size: .7rem; flex-shrink: 0; }
.proj-nav-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--gray-line); background: var(--bg-card);
  color: var(--navy); display: flex; align-items: center;
  justify-content: center; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.proj-nav-btn:hover { background: var(--grad-cta); color: #fff; border-color: transparent; }
[data-theme="dark"] .proj-nav-btn { background: var(--bg-card); border-color: var(--gray-line); color: #fff; }

/*  Partner spotlight  */
.partner-spotlight {
  background: var(--navy); border-radius: var(--radius-lg); padding: 60px;
  position: relative; overflow: hidden; color: #fff; margin: 0 24px;
}
.partner-spotlight::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%,rgba(0,194,255,.18),transparent 55%);
  pointer-events: none;
}
.partner-spotlight .inner { position: relative; z-index: 1; }
[data-theme="dark"] .partner-spotlight { background: var(--navy-deep); }
.partner-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md); padding: 24px;
  transition: background .25s, transform .25s;
}
.partner-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.partner-card .pic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--grad-cta);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; margin-bottom: 14px;
}
.partner-card h5 { color: #fff; margin-bottom: 7px; font-size: 1rem; }
.partner-card p  { color: rgba(255,255,255,.65); font-size: .84rem; margin-bottom: 12px; }
.partner-card a  { font-size: .8rem; font-weight: 600; color: var(--cyan); display: inline-flex; align-items: center; gap: 6px; }

/*  Brands marquee  */
.brands-row { overflow: hidden; padding: 8px 0; }
.brands-track { display: flex; gap: 44px; animation: brand-scroll 22s linear infinite; width: max-content; align-items: center; }
.brands-row:hover .brands-track { animation-play-state: paused; }
@keyframes brand-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-chip {
  flex-shrink: 0; padding: 13px 26px; border-radius: 11px;
  border: 1px solid var(--gray-line); background: var(--bg-card);
  font-family: var(--font-head); font-weight: 700; font-size: .96rem;
  color: var(--text-muted); white-space: nowrap; opacity: .55;
  transition: opacity .25s;
}
.brand-chip:hover { opacity: 1; }
[data-theme="dark"] .brand-chip { background: var(--bg-card); border-color: var(--gray-line); color: rgba(255,255,255,.6); }

/*  Footer  */
.site-footer {
  background: var(--chrome);
  color: var(--text-muted);
  font-family: var(--font-body);
  padding: 72px 0 0;
  border-top: 1px solid var(--gray-line);
}
.footer-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--gray-line);
  margin-bottom: 48px;
}
.footer-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; font-size: .76rem;
  background: #fff; border: 1px solid var(--gray-line);
  color: var(--slate);
}
.footer-badge i { color: var(--blue); font-size: .8rem; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 28px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-line);
}
@media(max-width:992px){ .footer-top { grid-template-columns: repeat(2,1fr); } }
@media(max-width:540px) { .footer-top { grid-template-columns: 1fr; } }
.footer-top h6 {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-top ul li { margin-bottom: 10px; font-size: .875rem; }
.footer-top a { color: var(--slate); transition: color .2s var(--ease); }
.footer-top a:hover { color: var(--navy); }
.footer-about p {
  font-size: .875rem;
  line-height: 1.75;
  color: var(--slate);
  margin: 14px 0 18px;
}
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--gray-line);
  background: #fff;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
  transition: background .2s, border-color .2s, color .2s;
}
.footer-social a:hover { background: var(--grad-cta); border-color: transparent; color: #fff; }
.footer-locations { display: flex; flex-direction: column; gap: 12px; }
.footer-office,
.footer-location { display: flex; gap: 9px; align-items: flex-start; }
.footer-office i,
.footer-location i { color: var(--blue); margin-top: 3px; font-size: .82rem; flex: none; }
.footer-office strong,
.footer-location strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 600;
}
.footer-office span,
.footer-location span { display: block; font-size: .8rem; color: var(--slate); }
.newsletter-form,
.newsletter-row {
  display: flex; gap: 9px; margin-top: 8px;
}
.newsletter-form input,
.newsletter-row input {
  flex: 1;
  padding: 10px 13px;
  border-radius: 8px;
  border: 1px solid var(--gray-line);
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .875rem;
}
.newsletter-form input::placeholder,
.newsletter-row input::placeholder { color: var(--text-muted); }
.site-footer .footer-top > div > p {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--slate);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: .8125rem;
  color: var(--slate);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a {
  margin-left: 16px;
  color: var(--slate);
  transition: color .2s var(--ease);
}
.footer-bottom a:hover { color: var(--navy); }

/*  Form controls  */
.form-field { margin-bottom: 18px; }
.form-label-n { 
  display: block; 
  font-size: .83rem; 
  font-weight: 600; 
  color: var(--navy); 
  margin-bottom: 6px;
  transition: color .24s var(--ease);
}
[data-theme="dark"] .form-label-n { color: rgba(255,255,255,.85); }
.form-control-n {
  width: 100%; 
  padding: 12px 15px; 
  border-radius: 10px;
  border: 1.5px solid var(--gray-line); 
  background: var(--bg-card);
  font-family: var(--font-body); 
  font-size: .9rem; 
  color: var(--text);
  transition: border-color .24s var(--ease), box-shadow .24s var(--ease-smooth), background-color .24s var(--ease);
}
.form-control-n:focus { 
  outline: none; 
  border-color: var(--blue); 
  box-shadow: 0 0 0 4px rgba(21,101,255,.1), inset 0 1px 3px rgba(0,0,0,.05);
  transform: scale(1.01);
}
[data-theme="dark"] .form-control-n { background: var(--bg-card); border-color: var(--gray-line); color: #fff; }
[data-theme="dark"] .form-control-n::placeholder { color: rgba(255,255,255,.3); }
[data-theme="dark"] .form-control-n:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0,194,255,.1), inset 0 1px 3px rgba(0,0,0,.2); }

/*  Chat widget  */
.chat-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 1100;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-cta); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: 0 10px 28px -8px rgba(21,101,255,.55);
  transition: transform .28s var(--ease-smooth), box-shadow .28s var(--ease-smooth);
  cursor: pointer;
}
.chat-fab:hover { 
  transform: scale(1.12) rotate(10deg);
  box-shadow: 0 14px 36px -6px rgba(21,101,255,.75);
  animation: float .8s ease-in-out infinite;
}
.chat-badge {
  position: absolute; top: -2px; right: -2px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--success); border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .58rem; font-weight: 700; color: #fff;
  animation: pulse-gentle 2s ease-in-out infinite;
}
.chat-window {
  position: fixed; right: 24px; bottom: 88px; z-index: 1100;
  width: 340px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--gray-line);
  box-shadow: 0 28px 56px -16px rgba(10,27,61,.3);
  overflow: hidden;
  transform: scale(.92) translateY(12px); opacity: 0; pointer-events: none;
  transform-origin: bottom right;
  transition: transform .28s var(--ease-smooth), opacity .28s var(--ease-smooth);
}
.chat-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
[data-theme="dark"] .chat-window { background: var(--bg-card); border-color: var(--gray-line); }
@media(max-width:480px){ .chat-window { right: 12px; left: 12px; width: auto; bottom: 80px; } }
.chat-head {
  background: var(--grad-brand); padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; color: #fff;
}
.chat-head-info { display: flex; align-items: center; gap: 11px; }
.chat-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center;
}
.chat-head-info strong { display: block; font-size: .88rem; }
.chat-head-info span   { font-size: .72rem; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 5px; }
.chat-head-info span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); display: inline-block; }
.chat-close-btn { background: none; border: none; color: rgba(255,255,255,.7); font-size: .9rem; padding: 4px; }
.chat-close-btn:hover { color: #fff; }
.chat-body { padding: 14px; height: 210px; overflow-y: auto; display: flex; flex-direction: column; gap: 9px; }
.chat-msg { max-width: 82%; padding: 9px 13px; border-radius: 13px; font-size: .83rem; line-height: 1.5; }
.chat-msg.bot { background: var(--bg); color: var(--text); border-radius: 4px 13px 13px 13px; align-self: flex-start; }
.chat-msg.user { background: var(--grad-cta); color: #fff; border-radius: 13px 4px 13px 13px; align-self: flex-end; }
[data-theme="dark"] .chat-msg.bot { background: #162544; color: #e0eaff; }
.chat-typing { display: flex; gap: 4px; padding: 9px 13px; align-self: flex-start; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--text-muted); animation: typing .9s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: .18s; }
.chat-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }
.chat-quick { padding: 0 12px 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.chat-quick button {
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--blue); background: transparent;
  color: var(--blue); font-size: .73rem; cursor: pointer;
  font-family: var(--font-body);
  transition: background .18s, color .18s;
}
.chat-quick button:hover { background: var(--blue); color: #fff; }
.chat-footer { padding: 10px 12px; border-top: 1px solid var(--gray-line); display: flex; gap: 8px; }
[data-theme="dark"] .chat-footer { border-color: var(--gray-line); }
.chat-input {
  flex: 1; padding: 8px 13px; border-radius: 999px;
  border: 1.5px solid var(--gray-line); background: var(--bg);
  font-size: .83rem; font-family: var(--font-body); color: var(--text); outline: none;
}
.chat-input:focus { border-color: var(--blue); }
[data-theme="dark"] .chat-input { background: #162544; border-color: #243a6b; color: #fff; }
.chat-send {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad-cta); border: none; color: #fff; font-size: .8rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/*  Cookie banner  */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1200;
  background: var(--navy); color: #fff; border-radius: var(--radius-md);
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; box-shadow: 0 20px 48px rgba(0,0,0,.4);
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: .84rem; color: rgba(255,255,255,.75); flex: 1; }
.cookie-banner .actions { display: flex; gap: 10px; }

/*  Back to top  */
.to-top {
  position: fixed; right: 24px; bottom: 90px; z-index: 1100;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card); border: 1.5px solid var(--gray-line);
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; 
  transition: opacity .3s var(--ease), transform .3s var(--ease-smooth), box-shadow .3s var(--ease-smooth);
  box-shadow: var(--shadow);
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { 
  background: var(--blue); 
  color: #fff; 
  border-color: var(--blue); 
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(21, 101, 255, 0.35);
}
[data-theme="dark"] .to-top { background: var(--bg-card); border-color: var(--gray-line); color: #fff; }
[data-theme="dark"] .to-top:hover { 
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 194, 255, 0.35);
}

/*  Global search overlay  */
.global-search-overlay {
  position: fixed; inset: 0; z-index: 1400;
  background: rgba(6, 15, 38, .88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: clamp(72px, 12vh, 120px) 20px 40px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.global-search-overlay.show,
.global-search-overlay.open { opacity: 1; visibility: visible; }
[data-theme="dark"] .global-search-overlay { background: rgba(3, 10, 26, .94); }

.search-modal {
  width: min(640px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 194, 255, .08);
  overflow: hidden;
  transform: translateY(-20px) scale(.97);
  opacity: 0;
  transition: transform .35s var(--ease-smooth), opacity .3s var(--ease);
}
.global-search-overlay.show .search-modal,
.global-search-overlay.open .search-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
[data-theme="dark"] .search-modal {
  background: var(--bg-card);
  border-color: var(--gray-line);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 194, 255, .12);
}

.search-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: var(--grad-brand);
  color: #fff;
}
.search-modal-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
}
.search-modal-title i { font-size: .88rem; opacity: .85; }

.search-box {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--gray-line);
  background: var(--bg-card);
}
[data-theme="dark"] .search-box { background: var(--bg-card); border-color: var(--gray-line); }
.search-box .search-field-icon {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(21, 101, 255, .1);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: .95rem;
}
[data-theme="dark"] .search-box .search-field-icon {
  background: rgba(0, 194, 255, .12);
  color: var(--cyan);
}
.search-box input {
  border: none; outline: none; flex: 1;
  font-size: 1.05rem; background: transparent;
  color: var(--text); font-family: var(--font-body);
}
[data-theme="dark"] .search-box input { color: #fff; }
.search-box input::placeholder { color: var(--text-muted); }

.search-close {
  flex: none; width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255, 255, 255, .12); border: none;
  color: rgba(255, 255, 255, .85); font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.search-close:hover { background: rgba(255, 255, 255, .22); color: #fff; }

.search-results {
  max-height: min(42vh, 360px);
  overflow-y: auto;
  background: var(--bg-card);
  border-bottom: 1px solid var(--gray-line);
}
[data-theme="dark"] .search-results { background: var(--bg-card); border-color: var(--gray-line); }
.search-result {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 20px;
  text-decoration: none; color: inherit;
  border-bottom: 1px solid var(--gray-line);
  transition: background .18s var(--ease);
}
.search-result:last-child { border-bottom: none; }
.search-result:hover,
.search-result.is-active {
  background: rgba(21, 101, 255, .08);
}
[data-theme="dark"] .search-result:hover,
[data-theme="dark"] .search-result.is-active {
  background: rgba(0, 194, 255, .1);
}
.search-result-icon {
  flex: none; width: 32px; height: 32px; margin-top: 2px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(21, 101, 255, .1);
  color: var(--blue); font-size: .75rem;
}
[data-theme="dark"] .search-result-icon {
  background: rgba(0, 194, 255, .12);
  color: var(--cyan);
}
.search-result-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.search-result-section {
  font-size: .68rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
}
.search-result-title {
  font-family: var(--font-head); font-size: .92rem; font-weight: 600;
  color: var(--text);
}
[data-theme="dark"] .search-result-title { color: #fff; }
.search-result-blurb {
  font-size: .8rem; line-height: 1.45; color: var(--text-muted);
}
.search-empty {
  padding: 22px 20px;
  text-align: center;
}
.search-empty p { margin: 0; font-size: .9rem; color: var(--text); }
.search-empty-hint {
  margin-top: 8px !important;
  font-size: .8rem !important;
  color: var(--text-muted) !important;
}

.search-quick {
  padding: 18px 22px 20px;
  background: var(--bg);
}
.search-quick[hidden] { display: none !important; }
[data-theme="dark"] .search-quick { background: #060f26; }
.search-quick-label {
  margin: 0 0 12px;
  font-family: var(--font-head); font-weight: 600;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
}
.search-quick-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.search-quick-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--bg-card); border: 1px solid var(--gray-line);
  font-family: var(--font-head); font-weight: 500; font-size: .84rem;
  color: var(--navy); text-decoration: none;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease);
}
.search-quick-tag i { font-size: .78rem; color: var(--blue); opacity: .8; }
.search-quick-tag:hover {
  background: var(--grad-cta); color: #fff;
  border-color: transparent; transform: translateY(-2px);
}
.search-quick-tag:hover i { color: #fff; opacity: 1; }
[data-theme="dark"] .search-quick-tag {
  background: rgba(255, 255, 255, .04);
  border-color: var(--gray-line); color: rgba(255, 255, 255, .85);
}
[data-theme="dark"] .search-quick-tag i { color: var(--cyan); }
[data-theme="dark"] .search-quick-tag:hover { color: #fff; }

.search-hint {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 11px 22px;
  border-top: 1px solid var(--gray-line);
  background: var(--bg-card);
  font-size: .76rem; color: var(--text-muted);
}
[data-theme="dark"] .search-hint { background: #0a1835; border-color: var(--gray-line); }
.search-hint kbd {
  display: inline-block; margin-right: 4px;
  padding: 2px 7px; border-radius: 5px;
  background: var(--bg); border: 1px solid var(--gray-line);
  font-family: var(--font-body); font-size: .7rem; color: var(--text);
}
[data-theme="dark"] .search-hint kbd {
  background: rgba(255, 255, 255, .06);
  border-color: var(--gray-line); color: rgba(255, 255, 255, .75);
}

/* Legacy markup fallback (upgraded by JS on load) */
.global-search-overlay > .search-box:not(.search-modal .search-box) {
  width: min(640px, 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--gray-line);
  border-bottom: none;
  box-shadow: none;
}
.global-search-overlay > .container-xl {
  width: min(640px, 100%) !important;
  max-width: none !important;
  margin-top: 0 !important;
  padding: 16px 22px 20px !important;
  background: var(--bg);
  border: 1px solid var(--gray-line);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .global-search-overlay > .container-xl { background: #060f26; border-color: var(--gray-line); }
.global-search-overlay .btn-outline {
  background: var(--bg-card); border-color: var(--gray-line); color: var(--navy);
}
.global-search-overlay .btn-outline:hover {
  background: var(--grad-cta); border-color: transparent; color: #fff;
}
[data-theme="dark"] .global-search-overlay .btn-outline {
  background: rgba(255, 255, 255, .04); border-color: var(--gray-line); color: rgba(255, 255, 255, .85);
}
@media(max-width:480px){
  .global-search-overlay { padding: 64px 14px 32px; }
  .search-modal-head { padding: 12px 16px; }
  .search-box { padding: 14px 16px; gap: 10px; }
  .search-box input { font-size: .95rem; }
  .search-quick { padding: 14px 16px 16px; }
  .search-results { max-height: 38vh; }
  .search-result { padding: 11px 16px; }
  .search-hint { flex-direction: column; gap: 6px; padding: 10px 16px; }
}

/*  Accessibility  */
.skip-link,
.skip-to-main {
  position: absolute; left: -9999px; top: 0;
  background: var(--blue); color: #fff; padding: 10px 18px;
  border-radius: 0 0 8px 0; font-family: var(--font-head); font-weight: 600;
  font-size: .88rem; text-decoration: none; z-index: 9999;
}
.skip-link:focus,
.skip-to-main:focus { left: 0; }
:focus-visible { outline: 3px solid var(--blue) !important; outline-offset: 3px !important; border-radius: 4px; }

/*  Reduced motion  */
@media(prefers-reduced-motion:reduce){
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/*  Utility  */
.bg-alt { background: var(--bg-alt); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/*  Industry tag chips  */
.ind-tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }
.ind-tags li {
  padding: 0; border-radius: 10px;
  background: var(--bg-card); border: 1.5px solid var(--gray-line);
  font-size: .88rem; font-family: var(--font-head); font-weight: 500; color: var(--navy);
  transition: background .22s, color .22s, transform .22s, border-color .22s;
  overflow: hidden;
}
.ind-tags li a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; color: inherit; text-decoration: none; cursor: pointer;
}
.ind-tags li:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-3px); }
.ind-tags li:hover a { color: #fff; }
[data-theme="dark"] .ind-tags li { background: var(--bg-card); border-color: var(--gray-line); color: rgba(255,255,255,.8); }
[data-theme="dark"] .ind-tags li:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/*  Service pill list  */
.svc-pills { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; }
.svc-pills li a {
  display: block; padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid var(--gray-line); font-size: .86rem; color: var(--navy);
  font-family: var(--font-head); font-weight: 500;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.svc-pills li a:hover { background: var(--grad-cta); color: #fff; border-color: transparent; transform: translateY(-2px); }
[data-theme="dark"] .svc-pills li a { color: #fff; border-color: var(--gray-line); background: transparent; }

/*  Background alternates (dark mode aware)  */
/* bg-alt defined once via --bg-alt */

/*  section-sm alias (was section-tight)  */
.section-sm { padding: 56px 0; }
@media(max-width:768px){ .section-sm { padding: 40px 0; } }

/*  Mega menu extra fixes  */
.mega { width: min(820px,92vw); }
.mega-col h6 { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 12px; }
[data-theme="dark"] .mega-col h6 { color: rgba(255,255,255,.4); }

/*  Nav burger (mobile)  */
.nav-burger {
  display: none; width: 40px; height: 40px; border-radius: 8px;
  border: 1.5px solid var(--gray-line); background: transparent;
  align-items: center; justify-content: center; color: var(--navy);
  font-size: .95rem;
}
.nesha-nav.is-scrolled .nav-burger { border-color: var(--gray-line); color: var(--navy); }
@media(max-width:992px){ .nav-burger { display: flex; } .nav-links, .nav-actions .btn { display: none; } }

/*  Industry card grid version  */
.industry-card {
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  height: 220px; display: flex; align-items: flex-end; padding: 20px;
  color: #fff; background: linear-gradient(0deg,rgba(10,27,61,.92),rgba(10,27,61,.35)), var(--grad-brand);
  transition: transform .3s var(--ease);
}
.industry-card:hover { transform: translateY(-5px); }
.industry-card h4 { color: #fff; margin-bottom: 4px; font-size: 1.02rem; }
.industry-card span { font-size: .76rem; color: rgba(255,255,255,.65); }
.industry-card > i { position: absolute; top: 18px; right: 18px; font-size: 1.3rem; opacity: .5; }

/*  Dark mode for ALL remaining bg-card elements  */
[data-theme="dark"] section:not([class*="stats"]):not([class*="testi"]):not([class*="partner"]):not([class*="page-header"]):not([class*="hero"]):not([class*="cta-band"]) {
  background: inherit;
}
[data-theme="dark"] .card-dark { background: var(--bg-alt); }

/*  Hero stats (trust numbers below hero)  */
.hero-trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-trust .item { text-align: center; }
.hero-trust .item b { display: block; font-family: var(--font-head); font-size: 1.8rem; color: #fff; }
.hero-trust .item span { font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; }
.hero-trust .sep { width: 1px; height: 32px; background: rgba(255,255,255,.18); }

/*  Proj carousel nav arrows  */
.proj-nav-btn.swiper-button-disabled { opacity: .35; pointer-events: none; }

/*  Insight card dark  */
[data-theme="dark"] .insight-body h4 { color: #fff; }
[data-theme="dark"] .insight-body .insight-meta { color: rgba(255,255,255,.4); }

/*  Footer newsletter input  */
[data-theme="dark"] .site-footer {
  background: var(--chrome);
  color: var(--text-muted);
  border-top-color: var(--gray-line);
}
[data-theme="dark"] .site-footer .footer-top h6 { color: var(--navy); }
[data-theme="dark"] .site-footer .footer-top a,
[data-theme="dark"] .site-footer .footer-bottom,
[data-theme="dark"] .site-footer .footer-bottom a,
[data-theme="dark"] .site-footer .footer-about p,
[data-theme="dark"] .site-footer .footer-top > div > p,
[data-theme="dark"] .site-footer .footer-location span,
[data-theme="dark"] .site-footer .footer-office span { color: var(--slate); }
[data-theme="dark"] .site-footer .footer-top a:hover,
[data-theme="dark"] .site-footer .footer-bottom a:hover { color: var(--navy); }
[data-theme="dark"] .site-footer .footer-location strong,
[data-theme="dark"] .site-footer .footer-office strong { color: var(--navy); }
[data-theme="dark"] .newsletter-form input,
[data-theme="dark"] .newsletter-row input {
  background: #fff;
  border-color: var(--gray-line);
  color: var(--text);
}
[data-theme="dark"] .newsletter-form input::placeholder,
[data-theme="dark"] .newsletter-row input::placeholder { color: var(--text-muted); }

/*  Form control dark  */
[data-theme="dark"] .form-control-n {
  background: var(--bg-card); border-color: var(--gray-line); color: #fff;
}
[data-theme="dark"] .form-control-n::placeholder { color: rgba(255,255,255,.3); }
[data-theme="dark"] .form-control-n:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0,194,255,.1); }
[data-theme="dark"] select.form-control-n option { background: var(--bg-card); }

/*  Mobile full responsive  */
@media(max-width:768px){
  .hero-video-content { padding: 110px 0 60px; }
  .hero-video-content h1 { font-size: 2rem !important; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width:100%; justify-content: center; }
  .cta-band { padding: 36px 24px; margin: 0 12px; }
  .cta-band h2 { font-size: 1.35rem; }
  .cta-band .cta-actions { flex-direction: column; width: 100%; }
  .cta-band .cta-actions .btn { width: 100%; justify-content: center; }
  .page-header { padding: 130px 0 50px; }
  .page-header h1 { font-size: 1.7rem !important; }
  .partner-spotlight { margin: 0 12px; padding: 36px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-band { padding: 50px 0; }
  .stat-item b { font-size: 2rem; }
}
@media(max-width:540px){
  .footer-top { grid-template-columns: 1fr !important; }
}
@media(max-width:480px){
  .footer-top { grid-template-columns: 1fr !important; }
  .hero-stats { gap: 20px; }
  .hero-stat b { font-size: 1.7rem; }
  .hero-divider { display: none; }
  .brands-row { padding: 4px 0; }
  .newsletter-row { flex-direction: column; align-items: stretch; }
  .newsletter-row .btn { width: 100%; justify-content: center; }
}

/*  Print  */
@media print {
  .nesha-nav, .chat-fab, .chat-window, .cookie-banner, .to-top,
  .mobile-drawer, .drawer-overlay, .global-search-overlay { display: none !important; }
}

/*  Logo image sizing & display rules  */
.logo-img {
  height: 96px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain;
  display: block;
  transition: opacity .25s;
}

/* Navbar logo sizing */
.nesha-nav .logo-img-dark,
.nesha-nav .logo-img-white,
.nesha-nav .logo-img-single,
.nesha-nav .logo-img {
  height: 96px !important;
  width: auto !important;
  max-width: 360px !important;
  object-fit: contain;
}

.site-footer .logo-img { height: 72px !important; max-width: 280px !important; }

/* Mobile drawer */
.mobile-drawer .logo-img {
  height: 72px !important;
  width: auto !important;
  max-width: 240px !important;
}

@media (max-width: 992px) {
  .nesha-nav .logo-img,
  .nesha-nav .logo-img-dark,
  .nesha-nav .logo-img-white,
  .nesha-nav .logo-img-single {
    height: 56px !important;
    max-width: 200px !important;
  }
  .nesha-nav { padding: 10px 0; }
}
@media (max-width: 768px) {
  .nesha-nav .logo-img,
  .nesha-nav .logo-img-dark,
  .nesha-nav .logo-img-white,
  .nesha-nav .logo-img-single {
    height: 52px !important;
    max-width: 180px !important;
  }
}

/*  Card as anchor link  ensure proper display  */
a.card {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.card:hover { color: inherit; }
a.card h3, a.card h4 { color: var(--navy); }
[data-theme="dark"] a.card h3,
[data-theme="dark"] a.card h4 { color: #fff; }

/*  Insight card as link  */
a.insight-card { display: block; color: inherit; }
a.insight-card:hover { color: inherit; }

/*  Proj card as link  */
a.proj-card { display: block; color: inherit; }
a.proj-card:hover { color: inherit; }

/*  Industry card as link  */
a.industry-card { display: flex; }

/*  Partner card as link  */
a.partner-card { display: block; color: inherit; }

/*  Fix: nav active link  */

/*  Fix: hero stats mobile  */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust .item { text-align: center; }
.hero-trust .item b {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: #fff;
  line-height: 1.1;
}
.hero-trust .item span {
  font-size: .7rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.hero-trust .sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/*  Fix: testi-hero section needs overflow hidden  */
.testi-hero { overflow: hidden; position: relative; }

/*  Fix: partner-spotlight inner content overflow  */
.partner-spotlight { overflow: hidden; }

/*  Fix: stats-band counter color in dark mode  */
[data-theme="dark"] .stats-band { background: var(--navy-deep); }

/*  Fix: section bg-alt in dark mode on body  */
/* dark bg-alt via --bg-alt token */

/*  Fix: footer social links color  */
.footer-social a { color: var(--navy); }
.footer-social a:hover { color: #fff; }

/*  Fix: mobile drawer nav links  */
.mobile-drawer a {
  display: block;
  padding: 9px 6px;
  color: var(--slate);
  font-size: .9rem;
  border-bottom: 1px solid transparent;
}
[data-theme="dark"] .mobile-drawer a { color: var(--slate); border-color: transparent; }
.mobile-drawer a:hover { color: var(--navy); }
[data-theme="dark"] .mobile-drawer a:hover { color: var(--navy); }
.mobile-drawer a.active { color: var(--navy); font-weight: 600; }
[data-theme="dark"] .mobile-drawer a.active { color: var(--navy); }
.mobile-drawer .drawer-toggle.active {
  color: var(--navy);
  border-color: var(--gray-line);
  background: rgba(10, 27, 61, .06);
}
[data-theme="dark"] .mobile-drawer .drawer-toggle.active {
  color: var(--navy);
  border-color: var(--gray-line);
  background: rgba(10, 27, 61, .06);
}
.mobile-drawer .btn { margin-top: 16px; width: 100%; justify-content: center; }

/*  Fix: FAQ max-height transition  */
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }

/*  Fix: form select dark mode  */
[data-theme="dark"] select.form-control-n {
  background: var(--bg-card);
  color: #fff;
  border-color: var(--gray-line);
}

/*  Fix: breadcrumb spacing  */
.breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb-row a { color: rgba(255,255,255,.75); }
.breadcrumb-row a:hover { color: #fff; }
.breadcrumb-row i { font-size: .55rem; }

/*  Fix: page-header hero-cta button spacing  */
.page-header .hero-cta { margin-top: 26px; }

/*  Fix: card ic centering on about leadership  */
.card .ic-center { margin: 0 auto 16px; }

/*  Fix: swiper slide height consistency  */
.testi-swiper .swiper-slide { height: auto; }
.proj-swiper .swiper-slide  { height: auto; }

/*  Fix: g3/g4 on narrow inner pages  */
@media(max-width:992px) {
  .g3 { grid-template-columns: 1fr 1fr; gap: 18px; }
  .g4 { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media(max-width:580px) {
  .g3, .g4, .g2 { grid-template-columns: 1fr; gap: 14px; }
  .g2h { grid-template-columns: 1fr; gap: 36px; }
  .hero-trust .sep { display: none; }
}

/*  Fix: section-head margin on mobile  */
@media(max-width:768px) {
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 1.5rem; }
  .card { padding: 22px 18px; }
  .mobile-drawer { top: 8px; right: 8px; bottom: 8px; width: min(94vw, 380px); padding: 16px 12px 18px; border-radius: 24px; }
  .mobile-drawer .brand-logo { margin-right: 46px !important; }
  .step-card { padding: 24px 18px; }
  .partner-spotlight { padding: 36px 22px; }
}

/* Smoothness polish */
html { scroll-padding-top: 96px; }
.card, .step-card, .proj-card, .industry-card, .partner-card {
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .24s var(--ease), background-color .24s var(--ease);
  will-change: transform;
}
.to-top, .chat-fab, .chat-window, .cookie-banner {
  transition: transform .24s var(--ease), opacity .24s var(--ease), box-shadow .24s var(--ease);
}
.chat-window { transform: scale(.98) translateY(10px); }
.chat-window.open { transform: scale(1) translateY(0); }
.footer-social a, .nav-links > li > a, .mobile-drawer a {
  transition: color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
}

/* WhatsApp floating contact button */
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 10px 24px -12px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .22); }
  50% { box-shadow: 0 14px 30px -12px rgba(37, 211, 102, .55), 0 0 0 10px rgba(37, 211, 102, 0); }
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 150px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  font-size: 1.5rem;
  z-index: 1100;
  box-shadow: 0 12px 28px -12px rgba(37, 211, 102, .5);
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-fab:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.whatsapp-fab:focus-visible {
  outline-color: #25D366 !important;
}

@media (max-width: 992px) {
  .container-xl { padding: 0 18px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 84px; }
  .btn { min-height: 44px; }
  .chat-window { width: calc(100vw - 20px); right: 10px; bottom: 84px; }
  .cookie-banner { left: 10px; right: 10px; max-width: none; }
  .whatsapp-fab { right: 14px; bottom: 128px; width: 54px; height: 54px; font-size: 1.35rem; }
}

/* ========== ENHANCED UI POLISH ========== */

/* Smooth transitions for all interactive elements */
button, [role="button"], input, select, textarea {
  transition: all .24s var(--ease);
}

/* Enhanced card animations */
.card, .step-card, .proj-card, .industry-card, .partner-card, .insight-card {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

/* Staggered animations for list items */
.g3 > div:nth-child(1) { animation: fadeInUp .5s var(--ease) 0s; }
.g3 > div:nth-child(2) { animation: fadeInUp .5s var(--ease) .1s; }
.g3 > div:nth-child(3) { animation: fadeInUp .5s var(--ease) .2s; }
.g4 > div:nth-child(1) { animation: fadeInUp .5s var(--ease) 0s; }
.g4 > div:nth-child(2) { animation: fadeInUp .5s var(--ease) .1s; }
.g4 > div:nth-child(3) { animation: fadeInUp .5s var(--ease) .2s; }
.g4 > div:nth-child(4) { animation: fadeInUp .5s var(--ease) .3s; }

/* Enhanced focus states for accessibility */
:focus-visible {
  outline: 2px solid var(--blue) !important;
  outline-offset: 4px !important;
  border-radius: 4px;
}

[data-theme="dark"] :focus-visible {
  outline-color: var(--cyan) !important;
}

/* Links - maintain existing design system styling */
a[href] {
  transition: opacity .24s var(--ease);
}

/* Smooth scrolling enhancements */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Enhanced list item interactions */
li {
  transition: transform .24s var(--ease), opacity .24s var(--ease);
}

li:hover {
  transform: translateX(2px);
}

/* Better input and textarea focus states */
input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
textarea,
select {
  transition: all .24s var(--ease);
}

/* Subtle hover effects for text elements */
h1, h2, h3, h4, h5, h6 {
  transition: color .24s var(--ease);
}

/* Enhanced shadow transitions */
.card:hover,
.step-card:hover,
.proj-card:hover,
.insight-card:hover {
  box-shadow: var(--shadow-card-hover) !important;
}

/* Smoother icon transitions */
i, [class*="fa-"] {
  transition: all .24s var(--ease);
  will-change: transform;
}

/* Enhanced table interactions if present */
table tr:hover {
  background-color: rgba(21, 101, 255, 0.05);
  transition: background-color .24s var(--ease);
}

/* Better code block styling */
code, pre {
  background-color: rgba(21, 101, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  transition: background-color .24s var(--ease);
}

code:hover, pre:hover {
  background-color: rgba(21, 101, 255, 0.15);
}

/* Smooth section transitions */
section {
  transition: background-color .24s var(--ease);
}

/* Enhanced paragraph and text readability */
p {
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* Better list styling */
ul, ol {
  list-style-position: inside;
}

ul li::marker,
ol li::marker {
  color: var(--blue);
  font-weight: 600;
}

[data-theme="dark"] ul li::marker,
[data-theme="dark"] ol li::marker {
  color: var(--cyan);
}

/* Blockquote enhancements */
blockquote {
  border-left: 4px solid var(--grad-cta);
  padding-left: 16px;
  margin-left: 0;
  opacity: 0.9;
  transition: opacity .24s var(--ease);
}

blockquote:hover {
  opacity: 1;
}

/* Badge/pill enhancements */
.badge, .pill, [class*="badge"], [class*="pill"] {
  transition: all .24s var(--ease);
  will-change: transform;
}

.badge:hover, .pill:hover, [class*="badge"]:hover, [class*="pill"]:hover {
  transform: scale(1.05);
}

/* Enhanced transition for page loads */
@keyframes pageLoad {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

main {
  animation: fadeInUp .6s var(--ease);
}

/* Smooth color transitions for theme switching */
* {
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

/* Better disabled state styling */
button:disabled,
input:disabled,
select:disabled,
textarea:disabled,
[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Enhanced overlay transitions */
.overlay, [class*="overlay"] {
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}

/* Smooth modal transitions */
.modal, [role="dialog"] {
  animation: scaleIn .3s var(--ease-smooth);
}

/* Enhanced tooltip styling */
[data-tooltip], .tooltip {
  position: relative;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s var(--ease);
  z-index: 1000;
}

[data-tooltip]:hover::before {
  opacity: 1;
}

/* Smooth navbar transitions */
nav {
  transition: all .3s var(--ease);
}

/* Enhanced dropdown animations */
.dropdown, [class*="dropdown"] {
  animation: slideDown .24s var(--ease);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth loading states */
.loading, [aria-busy="true"] {
  animation: pulse-gentle 1.5s ease-in-out infinite;
}

/* Links in content areas - subtle enhancement */
.card a[href],
.insight-card a[href],
.partner-card a[href],
.proj-card a[href],
p a[href],
li a[href] {
  transition: opacity .24s var(--ease), color .24s var(--ease);
}

.card a[href]:hover,
.insight-card a[href]:hover,
.partner-card a[href]:hover,
.proj-card a[href]:hover,
p a[href]:hover,
li a[href]:hover {
  opacity: 0.85;
}

/* ========== AI BACKGROUND ANIMATIONS ========== */

/* AI Particle Animations */
@keyframes aiFloat {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.5; }
  25% { transform: translateY(-40px) translateX(20px) rotate(90deg); opacity: 0.8; }
  50% { transform: translateY(-80px) translateX(-15px) rotate(180deg); opacity: 0.6; }
  75% { transform: translateY(-40px) translateX(-25px) rotate(270deg); opacity: 0.75; }
}

@keyframes neuralPulse {
  0%, 100% { opacity: 0.6; filter: drop-shadow(0 0 12px rgba(0,194,255,.5)); }
  50% { opacity: 1; filter: drop-shadow(0 0 28px rgba(0,194,255,.9)); }
}

@keyframes dataFlow {
  0% { transform: translateY(100%) translateX(0); opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translateY(-100%) translateX(50px); opacity: 0; }
}

@keyframes matrixFall {
  0% { transform: translateY(-15%) rotate(0deg); opacity: 0; }
  3% { opacity: 1; }
  97% { opacity: 1; }
  100% { transform: translateY(120%) rotate(20deg); opacity: 0; }
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* AI Background Elements */
.ai-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.ai-particle {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.ai-particle.small {
  width: 3px;
  height: 3px;
  background: rgba(0,194,255,.75);
  animation: aiFloat 8s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(0,194,255,.6);
}

.ai-particle.medium {
  width: 6px;
  height: 6px;
  background: rgba(0,194,255,.65);
  animation: aiFloat 12s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(0,194,255,.5);
}

.ai-particle.large {
  width: 10px;
  height: 10px;
  background: rgba(0,194,255,.5);
  animation: aiFloat 15s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(0,194,255,.4);
}

.neural-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,194,255,.95);
  box-shadow: 0 0 16px rgba(0,194,255,.8), 0 0 32px rgba(0,194,255,.4);
  animation: neuralPulse 2.5s ease-in-out infinite;
  will-change: filter, opacity;
}

.data-stream {
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, rgba(0,194,255,0), rgba(0,194,255,.9), rgba(0,194,255,.6), rgba(0,194,255,0));
  animation: dataFlow 6s linear infinite;
  will-change: transform;
  box-shadow: 0 0 8px rgba(0,194,255,.4);
}

.matrix-char {
  position: absolute;
  font-size: 1rem;
  color: rgba(0,194,255,.25);
  font-family: monospace;
  font-weight: bold;
  animation: matrixFall 8s linear infinite;
  text-shadow: 0 0 12px rgba(0,194,255,.4);
  will-change: transform;
}

.orbit-ring {
  position: absolute;
  border: 1.5px solid rgba(0,194,255,.25);
  border-radius: 50%;
  animation: orbitRotate 20s linear infinite;
  will-change: transform;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 20px rgba(0,194,255,.08), 0 0 20px rgba(0,194,255,.08);
}

.orbit-ring.small {
  width: 80px;
  height: 80px;
}

.orbit-ring.medium {
  width: 150px;
  height: 150px;
}

.orbit-ring.large {
  width: 280px;
  height: 280px;
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== Error pages (404 / 500) ========== */
@keyframes errorFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes errorGlow {
  0%, 100% { opacity: .45; transform: scale(1); }
  50% { opacity: .75; transform: scale(1.06); }
}
@keyframes errorFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(0, 194, 255, .14), transparent 55%),
    radial-gradient(ellipse 70% 45% at 85% 80%, rgba(21, 101, 255, .12), transparent 50%),
    var(--bg);
  color: var(--text);
}
.error-page-nav {
  padding: 18px 0;
  background: var(--chrome);
  border-bottom: 1px solid var(--gray-line);
}
.error-page-nav .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.error-page-nav .brand-logo img { height: 64px; }
.error-page-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 0 72px;
  position: relative;
  overflow: hidden;
}
.error-page-main::before,
.error-page-main::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
  animation: errorGlow 7s ease-in-out infinite;
}
.error-page-main::before {
  width: 280px; height: 280px;
  top: 8%; left: -60px;
  background: radial-gradient(circle, rgba(0, 194, 255, .22), transparent 70%);
}
.error-page-main::after {
  width: 320px; height: 320px;
  bottom: 5%; right: -80px;
  background: radial-gradient(circle, rgba(21, 101, 255, .18), transparent 70%);
  animation-delay: 1.5s;
}
.error-panel {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  animation: errorFadeUp .7s var(--ease) both;
}
.error-code {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(5.5rem, 16vw, 8.5rem);
  line-height: .95;
  letter-spacing: -.04em;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 8px;
  animation: errorFloat 4.5s ease-in-out infinite;
  filter: drop-shadow(0 12px 28px rgba(21, 101, 255, .18));
}
.error-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.error-kicker i { color: var(--cyan); }
.error-panel h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  margin: 0 0 12px;
  color: var(--navy);
}
[data-theme="dark"] .error-panel h1 { color: #fff; }
.error-panel .lead {
  margin: 0 auto 28px;
  max-width: 440px;
  font-size: 1.02rem;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.error-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.error-quick a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--gray-line);
  background: var(--bg-card);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .86rem;
  font-weight: 500;
  transition: transform .22s var(--ease), border-color .22s, color .22s, box-shadow .22s;
}
.error-quick a:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow);
}
[data-theme="dark"] .error-quick a { color: #fff; }
[data-theme="dark"] .error-quick a:hover { color: var(--cyan); border-color: var(--cyan); }
.error-page-foot {
  padding: 18px 0 28px;
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
}
.error-page-foot a { color: var(--blue); font-weight: 600; }
.error-page-foot a:hover { color: var(--cyan); }

@media (max-width: 576px) {
  .error-page-nav .brand-logo img { height: 52px; }
  .error-actions .btn { width: 100%; justify-content: center; }
}

/* ========== SITEWIDE RESPONSIVE GRID FIXES ========== */
/* Named grids used across pages (many also set inline columns) */
.about-grid,
.intro-grid,
.hero-grid,
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.kpi-grid,
.stats-grid,
.grid-4,
.grid-auto-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.what-grid,
.grid-auto-3,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.capability-grid,
.svc-list-grid,
.partner-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 992px) {
  .kpi-grid,
  .stats-grid,
  .grid-4,
  .grid-auto-4,
  .what-grid,
  .grid-auto-3,
  .process-grid,
  .why-grid,
  .capability-grid,
  .svc-list-grid,
  .partner-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .about-grid,
  .intro-grid,
  .hero-grid,
  .featured-grid {
    gap: 28px !important;
  }
}

@media (max-width: 768px) {
  .about-grid,
  .intro-grid,
  .hero-grid,
  .featured-grid,
  .kpi-grid,
  .stats-grid,
  .what-grid,
  .grid-4,
  .grid-auto-3,
  .grid-auto-4,
  .process-grid,
  .why-grid,
  .capability-grid,
  .svc-list-grid,
  .partner-cards-grid,
  .g2, .g3, .g4, .g2h {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Beat common inline grids used on contact/about/careers/solutions */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:1.4fr 1fr"],
  [style*="grid-template-columns: 1.4fr 1fr"],
  [style*="grid-template-columns:1.2fr 1fr"],
  [style*="grid-template-columns: 1.2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .hero-trust {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    justify-items: center;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-trust .sep { display: none !important; }
  .hero-trust .item { min-width: 0; width: 100%; }
  .hero-trust .item b { font-size: 1.45rem; }
  .hero-trust .item span {
    font-size: .62rem;
    letter-spacing: .04em;
    display: block;
    line-height: 1.35;
    max-width: 11em;
    margin: 0 auto;
  }

  .js-form[style*="display:flex"],
  form[style*="display:flex"][style*="gap"] {
    flex-wrap: wrap;
  }
  .js-form[style*="display:flex"] .form-control-n,
  form[style*="display:flex"] .form-control-n {
    min-width: 0;
    flex: 1 1 160px;
  }
  .js-form[style*="display:flex"] .btn,
  form[style*="display:flex"] .btn {
    flex: 1 1 auto;
  }

  .ind-tags {
    justify-content: center;
    gap: 8px;
  }
  .ind-tags a {
    font-size: .82rem;
  }
}

@media (max-width: 480px) {
  .hero-trust {
    grid-template-columns: 1fr !important;
    max-width: 260px;
  }
  .page-header h1 { font-size: 1.55rem !important; }
  .section { padding-left: 0; padding-right: 0; }
}
