/* ============================================================
   APPTHER — REVAMPED INDEX STYLES
   Font: Montserrat | Palette: #0F172A / #6395FF / #FFFFFF
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #0F172A;
  --bg-card:     #1E293B;
  --bg-card-2:   #162032;
  --accent:      #0051E5;
  --accent-dark: #003BB5;
  --accent-glow: rgba(0, 81, 229, 0.18);
  --white:       #FFFFFF;
  --text-1:      #F1F5F9;
  --text-2:      #94A3B8;
  --text-3:      #64748B;
  --border:      rgba(255, 255, 255, 0.07);
  --border-hover:rgba(0, 81, 229, 0.35);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.22);
  --shadow-glow: 0 8px 40px rgba(0, 81, 229, 0.25);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background: linear-gradient(160deg, #060e1d 0%, #0d1628 55%, #0a1220 100%);
  min-height: 100vh;
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; transition: color 0.25s var(--ease); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  color: var(--text-1);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem;   font-weight: 700; }
p  { color: var(--text-2); font-weight: 300; font-size: 0.975rem; line-height: 1.75; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.28s var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border-color: var(--border-hover);
}
.btn-outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn i { font-size: 0.8rem; }

/* ── Section Header ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 44px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 520px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.navbar-wrapper.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.09);
}
.navbar-main { width: 100%; }
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Logo ───────────────────────────────────────────────────── */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 36px; width: auto; display: block; }
.site-logo .logo-default  { display: block; }
.site-logo .logo-scrolled { display: none; }
.navbar-wrapper.scrolled .site-logo .logo-default  { display: none; }
.navbar-wrapper.scrolled .site-logo .logo-scrolled { display: block; }

/* ── Desktop Nav Links ──────────────────────────────────────── */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-desktop > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border-radius: 6px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.nav-desktop > li > a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-caret { font-size: 0.55rem; transition: transform 0.3s ease; }
.nav-item:hover .nav-caret { transform: rotate(180deg); }

/* Scrolled state — dark links */
.navbar-wrapper.scrolled .nav-desktop > li > a { color: #334155; }
.navbar-wrapper.scrolled .nav-desktop > li > a:hover { color: var(--accent); background: rgba(0,81,229,0.06); }

/* ── AI Badge pill ─────────────────────────────────────────── */
.nav-ai-badge-item { margin-right: 6px; }
.nav-ai-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 5px 14px 5px 5px !important;
  border-radius: 50px !important;
  border: 1.5px solid rgba(0,81,229,0.7) !important;
  background: rgba(0,81,229,0.12) !important;
  cursor: pointer;
  text-decoration: none !important;
  animation: badgeGlow 2.4s ease-in-out infinite;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
}
.nav-ai-badge:hover {
  background: rgba(0,81,229,0.22) !important;
  border-color: #0051E5 !important;
}
.navbar-wrapper.scrolled .nav-ai-badge {
  border-color: rgba(0,81,229,0.7) !important;
  background: rgba(0,81,229,0.10) !important;
}
@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(0,81,229,0.25), 0 0 0 0 rgba(0,81,229,0);
    border-color: rgba(0,81,229,0.6);
  }
  50% {
    box-shadow: 0 0 18px rgba(0,81,229,0.65), 0 0 32px rgba(0,81,229,0.25);
    border-color: #0051E5;
  }
}
.nav-badge-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0051E5 0%, #003BB5 100%);
  box-shadow: 0 0 10px rgba(0,81,229,0.6);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.5rem;
  color: #fff;
}
.nav-badge-label { color: rgba(255,255,255,0.95); }
.nav-badge-label .ai-word {
  color: #5B9BFF;
  font-weight: 600;
}
.navbar-wrapper.scrolled .nav-badge-label { color: #1e3a6e; }

/* ── Dropdown ───────────────────────────────────────────────── */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #1a2744;
  border: 1px solid rgba(0,81,229,0.15);
  border-radius: var(--radius-md);
  min-width: 210px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s var(--ease);
  z-index: 500;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(0,81,229,0.15);
  border-top: 0;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown li a {
  display: block;
  padding: 8px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-2);
  transition: all 0.2s;
}
.nav-dropdown li a:hover { color: var(--accent); background: rgba(0,81,229,0.07); padding-left: 24px; }
.nav-dropdown li a::after { display: none; }

/* Scrolled — dropdown still dark (intentional) */
.navbar-wrapper.scrolled .nav-dropdown { background: var(--white); border-color: #E2E8F0; }
.navbar-wrapper.scrolled .nav-dropdown li a { color: #475569; }
.navbar-wrapper.scrolled .nav-dropdown li a:hover { color: var(--accent); background: rgba(0,81,229,0.06); }

/* ════ INDUSTRIES MEGA ════ */
.nav-item.ind-item { position: static; }
.ind-mega {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 700px;
  max-width: calc(100vw - 32px);
  background: #0a1628;
  border: 1px solid rgba(0,81,229,0.18);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 9999;
  pointer-events: none;
}
/* Invisible bridge fills the gap so mouse movement doesn't break hover */
.ind-mega::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}
.nav-item.ind-item:hover .ind-mega {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.ind-mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ind-mega-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4d90ff;
  display: block;
  margin-bottom: 3px;
}
.ind-mega-heading {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.ind-mega-view-all {
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color 0.16s;
}
.ind-mega-view-all:hover { color: #7ab4ff; }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.ind-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  transition: all 0.18s ease;
}
.ind-card:hover {
  background: rgba(0,81,229,0.1);
  border-color: rgba(0,81,229,0.28);
  transform: translateY(-1px);
}
.ind-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.88rem;
  transition: all 0.18s;
}
.ind-card-name {
  display: block;
  font-size: 0.77rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.3;
  margin-bottom: 2px;
}
.ind-card:hover .ind-card-name { color: #fff; }
.ind-card-tag {
  font-size: 0.64rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.3;
}
.navbar-wrapper.scrolled .ind-mega { background: #fff; border-color: #dde5f0; box-shadow: 0 24px 60px rgba(0,0,0,0.14); }
.navbar-wrapper.scrolled .ind-mega-header { border-bottom-color: #e8edf5; }
.navbar-wrapper.scrolled .ind-mega-eyebrow { color: #0051E5; }
.navbar-wrapper.scrolled .ind-mega-heading { color: #0f172a; }
.navbar-wrapper.scrolled .ind-mega-view-all { color: #94a3b8; }
.navbar-wrapper.scrolled .ind-mega-view-all:hover { color: #0051E5; }
.navbar-wrapper.scrolled .ind-card { background: #f8fafc; border-color: #e8edf5; }
.navbar-wrapper.scrolled .ind-card:hover { background: rgba(0,81,229,0.06); border-color: rgba(0,81,229,0.2); }
.navbar-wrapper.scrolled .ind-card-name { color: #1e293b; }
.navbar-wrapper.scrolled .ind-card:hover .ind-card-name { color: #0f172a; }
.navbar-wrapper.scrolled .ind-card-tag { color: #94a3b8; }

/* ════ RESOURCES DROPDOWN ════ */
.nav-item.res-item { position: relative; }
.res-drop {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 300px;
  background: #0a1628;
  border: 1px solid rgba(0,81,229,0.18);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 9999;
  pointer-events: none;
}
.res-drop::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}
.nav-item.res-item:hover .res-drop {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.res-drop-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.16s;
}
.res-drop-item:hover { background: rgba(0,81,229,0.1); }
.res-drop-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(0,81,229,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #7ab4ff;
  font-size: 0.88rem;
  transition: all 0.16s;
}
.res-drop-item:hover .res-drop-icon { background: #0051E5; color: #fff; }
.res-drop-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1px;
}
.res-drop-text span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}
.navbar-wrapper.scrolled .res-drop { background: #fff; border-color: #dde5f0; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.navbar-wrapper.scrolled .res-drop-item:hover { background: rgba(0,81,229,0.06); }
.navbar-wrapper.scrolled .res-drop-icon { background: rgba(0,81,229,0.08); }
.navbar-wrapper.scrolled .res-drop-item:hover .res-drop-icon { background: #0051E5; color: #fff; }
.navbar-wrapper.scrolled .res-drop-text strong { color: #1e293b; }
.navbar-wrapper.scrolled .res-drop-text span { color: #64748b; }

/* ════════════════════════════════════════════════════════════
   MEGA MENU — SERVICES
   ════════════════════════════════════════════════════════════ */
.navbar-container { position: relative; overflow: visible; }
.nav-item.mega-item { position: static; }
.nav-item.mega-item > a::after { display: none !important; }

.mega-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 940px;
  max-width: calc(100vw - 32px);
  background: #0a1628;
  border: 1px solid rgba(0,81,229,0.18);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03);
  display: flex;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 9999;
  pointer-events: none;
}
/* Invisible bridge fills the gap so mouse movement doesn't break hover */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}
.mega-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ── Left sidebar ── */
.mega-left {
  width: 230px;
  flex-shrink: 0;
  background: #060f1e;
  padding: 20px 0 16px;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.mega-section-title {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  padding: 0 18px 14px;
  display: block;
}
.mega-cats { list-style: none; padding: 0; margin: 0; }
.mega-cat {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 18px 10px 15px;
  cursor: pointer;
  transition: all 0.16s ease;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.mega-cat:hover { background: rgba(0,81,229,0.1); border-left-color: rgba(0,81,229,0.5); }
.mega-cat.active { background: rgba(0,81,229,0.14); border-left-color: #0051E5; }
.mega-cat-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: all 0.16s ease;
}
.mega-cat:hover .mega-cat-icon { background: rgba(0,81,229,0.2); color: #7ab4ff; }
.mega-cat.active .mega-cat-icon { background: #0051E5; color: #fff; box-shadow: 0 4px 12px rgba(0,81,229,0.4); }
.mega-cat-info { display: flex; flex-direction: column; gap: 1px; }
.mega-cat-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color 0.16s;
  line-height: 1.25;
}
.mega-cat:hover .mega-cat-name, .mega-cat.active .mega-cat-name { color: #fff; }
.mega-cat-count {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}
.mega-cat.active .mega-cat-count { color: rgba(255,255,255,0.45); }

/* ── Right content ── */
.mega-right {
  flex: 1;
  padding: 22px 22px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.mega-panel { display: none; flex-direction: column; gap: 16px; flex: 1; }
.mega-panel.active { display: flex; }

.mega-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mega-panel-head-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(0,81,229,0.18);
  display: flex; align-items: center; justify-content: center;
  color: #7ab4ff; font-size: 0.95rem; flex-shrink: 0;
}
.mega-panel-head strong { display: block; font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.mega-panel-head span { font-size: 0.73rem; color: rgba(255,255,255,0.36); }

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  flex: 1;
  align-content: start;
}
.mega-svc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  transition: all 0.18s ease;
}
.mega-svc:hover {
  background: rgba(0,81,229,0.1);
  border-color: rgba(0,81,229,0.28);
  transform: translateY(-1px);
}
.mega-svc-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(0,81,229,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.7rem; color: #7ab4ff;
  transition: all 0.18s ease;
}
.mega-svc:hover .mega-svc-icon { background: #0051E5; color: #fff; }
.mega-svc-text strong {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.82); margin-bottom: 3px; line-height: 1.3;
}
.mega-svc-text span { font-size: 0.68rem; color: rgba(255,255,255,0.36); line-height: 1.4; }

.mega-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: rgba(0,81,229,0.07);
  border-radius: 10px; border: 1px solid rgba(0,81,229,0.15);
  margin-top: 4px;
}
.mega-cta strong { display: block; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.82); }
.mega-cta span { font-size: 0.69rem; color: rgba(255,255,255,0.32); }
.mega-cta-btns { display: flex; gap: 7px; flex-shrink: 0; }
.mega-btn-ghost {
  padding: 6px 13px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: all 0.18s; white-space: nowrap;
}
.mega-btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.mega-btn-solid {
  padding: 6px 13px; border-radius: 7px;
  background: #0051E5; font-size: 0.72rem; font-weight: 600;
  color: #fff; text-decoration: none; transition: all 0.18s; white-space: nowrap;
}
.mega-btn-solid:hover { background: #003BB5; transform: translateY(-1px); }

/* ── Scrolled (white header) state ── */
.navbar-wrapper.scrolled .mega-menu {
  background: #ffffff;
  border-color: #dde5f0;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}
.navbar-wrapper.scrolled .mega-left { background: #f4f7fc; border-right-color: #e8edf5; }
.navbar-wrapper.scrolled .mega-section-title { color: #94a3b8; }
.navbar-wrapper.scrolled .mega-cat:hover { background: rgba(0,81,229,0.06); }
.navbar-wrapper.scrolled .mega-cat.active { background: rgba(0,81,229,0.09); }
.navbar-wrapper.scrolled .mega-cat-icon { background: #e8edf5; color: #64748b; }
.navbar-wrapper.scrolled .mega-cat.active .mega-cat-icon { background: #0051E5; color: #fff; }
.navbar-wrapper.scrolled .mega-cat-name { color: #475569; }
.navbar-wrapper.scrolled .mega-cat:hover .mega-cat-name,
.navbar-wrapper.scrolled .mega-cat.active .mega-cat-name { color: #0f172a; }
.navbar-wrapper.scrolled .mega-cat-count { color: #94a3b8; }
.navbar-wrapper.scrolled .mega-panel-head { border-bottom-color: #e8edf5; }
.navbar-wrapper.scrolled .mega-panel-head strong { color: #0f172a; }
.navbar-wrapper.scrolled .mega-panel-head span { color: #94a3b8; }
.navbar-wrapper.scrolled .mega-panel-head-icon { background: rgba(0,81,229,0.1); }
.navbar-wrapper.scrolled .mega-svc { background: #f8fafc; border-color: #e8edf5; }
.navbar-wrapper.scrolled .mega-svc:hover { background: rgba(0,81,229,0.06); border-color: rgba(0,81,229,0.2); }
.navbar-wrapper.scrolled .mega-svc-icon { background: rgba(0,81,229,0.08); }
.navbar-wrapper.scrolled .mega-svc-text strong { color: #1e293b; }
.navbar-wrapper.scrolled .mega-svc-text span { color: #64748b; }
.navbar-wrapper.scrolled .mega-cta { background: #f1f5fb; border-color: #dde5f0; }
.navbar-wrapper.scrolled .mega-cta strong { color: #1e293b; }
.navbar-wrapper.scrolled .mega-cta span { color: #94a3b8; }
.navbar-wrapper.scrolled .mega-btn-ghost { border-color: #cbd5e1; color: #475569; }
.navbar-wrapper.scrolled .mega-btn-ghost:hover { border-color: #0051E5; color: #0051E5; }

/* ── Nav CTA Button (outline) ───────────────────────────────── */
.nav-desktop .nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  margin-left: 6px;
  text-decoration: none !important;
}
.nav-desktop .nav-cta-btn:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: var(--white) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}
.navbar-wrapper.scrolled .nav-desktop .nav-cta-btn {
  border-color: #0F172A;
  color: #0F172A !important;
}
.navbar-wrapper.scrolled .nav-desktop .nav-cta-btn:hover {
  background: #0F172A !important;
  color: var(--white) !important;
  border-color: #0F172A !important;
}
.nav-desktop .nav-cta-btn::after { display: none !important; }

/* ── Hamburger ──────────────────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.35s var(--ease);
}
.navbar-wrapper.scrolled .menu-toggle span { background: #0F172A; }

/* ── Drawer ─────────────────────────────────────────────────── */
.drawer-menu {
  position: fixed;
  top: 0; left: -100%;
  width: min(85vw, 360px);
  height: 100vh;
  background: #0d1829;
  border-right: 1px solid var(--border);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: left 0.38s var(--ease);
  overflow-y: auto;
}
.drawer-menu.open { left: 0; }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.drawer-logo .site-logo .logo-word { color: var(--white); }
.drawer-close {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
}
.drawer-close:hover { color: var(--white); }

.drawer-nav { flex: 1; padding: 16px 0; }
.drawer-group { }
.drawer-group-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
}
.drawer-group-toggle:hover { color: var(--white); background: rgba(255,255,255,0.03); }
.drawer-group-toggle .fa { font-size: 0.65rem; transition: transform 0.3s ease; }
.drawer-group-toggle.open { color: var(--accent); }
.drawer-group-toggle.open .fa { transform: rotate(180deg); }
.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(0,0,0,0.15);
}
.drawer-submenu.open { max-height: 700px; }
.drawer-sublink {
  display: block;
  padding: 9px 24px 9px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--text-3);
  transition: all 0.2s;
}
.drawer-sublink:hover { color: var(--accent); padding-left: 44px; }
.drawer-link {
  display: block;
  padding: 13px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.2s;
}
.drawer-link:hover { color: var(--white); background: rgba(255,255,255,0.03); }
.drawer-divider { height: 1px; background: var(--border); margin: 8px 0; }
.drawer-cta {
  margin: 12px 16px 0;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600 !important;
  padding: 13px 24px !important;
}
.drawer-cta:hover { background: var(--accent-dark) !important; }
.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.drawer-footer p { font-size: 0.78rem; color: var(--text-3); margin-bottom: 12px; }
.drawer-socials { display: flex; gap: 10px; }
.drawer-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.drawer-socials a:hover { border-color: var(--accent); color: var(--accent); }

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.active { opacity: 1; pointer-events: auto; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Video background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient overlay: 40% left → transparent right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.10) 75%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 100px;
}

/* Full-width text content */
.hero-content {
  max-width: 680px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.13;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
}
.hero-title .accent { color: var(--accent); }
.hero-title .muted  { color: rgba(255,255,255,0.65); font-weight: 500; }

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  margin-left: -10px;
  object-fit: cover;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.trust-text strong { color: #FFFFFF; font-weight: 600; }

/* Right — visual (kept for potential reuse) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-inner {
  position: relative;
  max-width: 480px;
  width: 100%;
}
.hero-mockup {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,81,229,0.12);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-badge-float {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-badge-float.top-left {
  top: 10%;
  left: -40px;
  animation-delay: -2s;
}
.hero-badge-float.bottom-right {
  bottom: 12%;
  right: -30px;
  animation-delay: -4s;
}
.badge-float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--accent);
}
.badge-float-text { line-height: 1.35; }
.badge-float-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-1);
}
.badge-float-text span {
  font-size: 0.73rem;
  color: var(--text-3);
  font-weight: 300;
}

/* ════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════ */
.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
  background: var(--bg-card-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-2);
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services-section { padding: 72px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.service-card p  { font-size: 0.875rem; margin-bottom: 20px; }
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ════════════════════════════════════════════════════════════
   PORTFOLIO
   ════════════════════════════════════════════════════════════ */
.portfolio-section {
  padding: 100px 0;
  background: var(--bg-card-2);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.portfolio-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-card); }
.portfolio-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0a0f1e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.portfolio-card:hover .portfolio-img img { transform: scale(1.04); }
.portfolio-body { padding: 24px; }
.portfolio-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px;
}
.portfolio-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border-radius: 4px;
  padding: 3px 10px;
}
.portfolio-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.portfolio-body p  { font-size: 0.85rem; margin-bottom: 18px; }
.portfolio-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.portfolio-link:hover { gap: 10px; }
.portfolio-cta { text-align: center; margin-top: 48px; }

/* ════════════════════════════════════════════════════════════
   TECH STACK
   ════════════════════════════════════════════════════════════ */
/* ═══ TECHNOLOGIES WE MASTER ═══ */
.tech-master-section { padding: 68px 0; background: #f7f9ff; }
.tech-master-section .section-header h2 { color: #0f172a; }
.tech-master-section .section-header p  { color: #64748b; }

.tech-master-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,20,80,0.13);
  margin-top: 52px;
  height: 600px;
}
.tech-master-sidebar {
  background: linear-gradient(165deg, #001489 0%, #0a2fa3 45%, #1549c0 100%);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow-y: auto;
  pointer-events: auto !important;
}
.tm-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
  user-select: none;
  pointer-events: auto !important;
}
.tm-cat:hover { background: rgba(255,255,255,0.09); }
.tm-cat.active { background: rgba(255,255,255,0.16); }
.tm-cat-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: background 0.2s;
}
.tm-cat.active .tm-cat-icon { background: rgba(255,255,255,0.22); color: #fff; }
.tm-cat-label {
  flex: 1;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}
.tm-cat.active .tm-cat-label { color: #fff; font-weight: 600; }
.tm-cat-arrow { color: rgba(255,255,255,0.3); font-size: 0.68rem; }
.tm-cat.active .tm-cat-arrow { color: rgba(255,255,255,0.65); }

.tech-master-right {
  background: #ffffff;
  padding: 32px 36px;
  overflow-y: auto;
  height: 100%;
}
.tm-panel { display: none; }
.tm-panel.active { display: block; }

.tm-group { margin-bottom: 26px; }
.tm-group:last-child { margin-bottom: 0; }
.tm-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}
.tm-group-bar {
  display: inline-block;
  width: 4px; height: 18px;
  border-radius: 2px;
  background: #0051E5;
  flex-shrink: 0;
}
.tm-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}
.tm-icon-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid #e8edf5;
  border-radius: 10px;
  background: #fff;
  cursor: default;
  transition: all 0.18s ease;
}
.tm-icon-card:hover {
  border-color: rgba(0,81,229,0.22);
  background: rgba(0,81,229,0.03);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,81,229,0.07);
}
.tm-icon-card img {
  width: 34px; height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}
.tm-icon-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
}

/* ═══ TRUSTED TECHNOLOGY PARTNERS ═══ */
.partners-section { padding: 60px 0; background: #fff; }
.partners-section .section-header h2 { color: #0f172a; }
.partners-section .section-header p  { color: #64748b; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 36px 18px 28px;
  border: 1.5px solid #e8edf5;
  border-radius: 18px;
  background: #fff;
  transition: all 0.22s ease;
  cursor: default;
}
.partner-card:hover {
  border-color: rgba(0,81,229,0.22);
  box-shadow: 0 10px 44px rgba(0,81,229,0.09);
  transform: translateY(-4px);
}
.partner-card img {
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.partner-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 72px 0;
  background: var(--bg-card-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.3s var(--ease);
}
.testimonial-card:hover { border-color: var(--border-hover); }
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 16px;
}
.testimonial-stars .fa { font-size: 0.78rem; color: #F59E0B; }
.testimonial-text {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-hover);
}
.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-1);
  display: block;
}
.author-role {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--text-3);
  display: block;
}

/* ════════════════════════════════════════════════════════════
   LATEST INSIGHTS
   ════════════════════════════════════════════════════════════ */
.insights-section {
  padding: 72px 0;
  background: var(--bg);
}

/* Section header with View All on the right */
.insights-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.insights-hdr-left .section-tag { display: inline-block; margin-bottom: 12px; }
.insights-hdr-left h2 { margin-bottom: 10px; }
.insights-hdr-left p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.6; max-width: 480px; margin: 0; }
.insights-view-all-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px;
  border: 1px solid rgba(0,81,229,0.35);
  border-radius: 50px;
  color: #7eb5ff;
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.insights-view-all-btn span { font-size: 1.1rem; line-height: 1; }
.insights-view-all-btn:hover {
  background: rgba(0,81,229,0.10);
  border-color: rgba(0,81,229,0.55);
  color: #fff;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}
.insight-card {
  background: #0d1b2e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  cursor: pointer;
}
.insight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0051e5, #4d8fff);
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 2;
}
.insight-card:hover::before { opacity: 1; }
.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,81,229,0.25);
  border-color: rgba(0,81,229,0.35);
}
.insight-card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0d1b2e;
  position: relative;
  padding: 4px;
}
.insight-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
  border-radius: 12px;
}
.insight-card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,12,24,0.72) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.insight-card:hover .insight-card-thumb img { transform: scale(1.07); }
.insight-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #162032, #1e293b);
}
.insight-no-img i { font-size: 2rem; color: rgba(255,255,255,0.1); }
.insight-card-cat {
  position: absolute;
  bottom: 12px; left: 12px;
  background: #0051e5;
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.insight-card-body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.insight-card-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.insight-card-title a { color: inherit; transition: color 0.2s; }
.insight-card-title a:hover { color: #4d8fff; }
.insight-card-excerpt {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.insight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 10px;
}
.insight-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
}
.insight-card-meta span { display: inline-flex; align-items: center; gap: 4px; }
.insight-card-meta i { font-size: 0.62rem; }
.insight-card-views { display: none; align-items: center; gap: 4px; }
.insight-card-views i { color: #4d8fff; font-size: 0.62rem; }
.insight-card-views.loaded { display: inline-flex; }
.insight-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4d8fff;
  white-space: nowrap;
  transition: gap 0.2s, color 0.2s;
  flex-shrink: 0;
}
.insight-read-more i { font-size: 0.65rem; transition: transform 0.2s; }
.insight-card:hover .insight-read-more { color: #fff; gap: 8px; }
.insight-card:hover .insight-read-more i { transform: translateX(2px); }
.insights-view-all { text-align: center; }
.btn-view-insights {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-view-insights:hover {
  background: #003ec2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,81,229,0.35);
}

/* Skeleton shimmer for insight cards */
@keyframes insightShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.ins-sk {
  background: linear-gradient(90deg, #1a2540 25%, #243050 50%, #1a2540 75%);
  background-size: 200% 100%;
  animation: insightShimmer 1.6s infinite;
  border-radius: 6px;
}
.ins-sk-card {
  background: #111d30;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
}
.ins-sk-img  { height: 180px; border-radius: 0; }
.ins-sk-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.ins-sk-tag  { height: 16px; width: 75px; }
.ins-sk-h1   { height: 17px; width: 92%; }
.ins-sk-h2   { height: 17px; width: 68%; }
.ins-sk-l1   { height: 12px; }
.ins-sk-l2   { height: 12px; width: 78%; }

/* ════════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,81,229,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  border: 1px solid rgba(0,81,229,0.2);
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  text-align: center;
  background: rgba(0,81,229,0.04);
  backdrop-filter: blur(6px);
}
.cta-inner h2 { margin-bottom: 16px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-inner p  { max-width: 480px; margin: 0 auto 36px; font-size: 0.975rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 60px 0 0;
  background: #0B1120;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr 1.3fr 1.4fr;
  gap: 36px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  padding: 0;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #8FA0BC;
  transition: color 0.2s;
  text-decoration: none;
  line-height: 1.4;
}
.footer-col ul li a:hover { color: #FFFFFF; }

/* Contact icon cards */
.footer-connect { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.footer-connect-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.footer-connect-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
  color: #fff;
  transition: background 0.2s ease;
}
.footer-connect-card:hover .footer-connect-icon { background: #003BB5; }
.footer-connect-card-text { display: flex; flex-direction: column; gap: 1px; }
.footer-connect-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: #8FA0BC;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-connect-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.2s;
}
.footer-connect-card:hover .footer-connect-value { color: #FFFFFF; }

/* Social icons */
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: #1A2540;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #8FA0BC;
  font-size: 0.9rem;
  transition: all 0.22s ease;
  text-decoration: none;
}
.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-bottom-logo img { height: 28px; width: auto; display: block; }
.footer-bottom p { font-size: 0.82rem; color: #5A6A85; margin: 0; }
.footer-legal { display: flex; gap: 22px; align-items: center; }
.footer-legal a {
  font-size: 0.82rem;
  font-weight: 400;
  color: #5A6A85;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #FFFFFF; }

/* ════════════════════════════════════════════════════════════
   LEFT-ALIGN ALL SECTION HEADINGS
   ════════════════════════════════════════════════════════════ */
.section-header { text-align: left; }
.section-header p { margin: 0; }

/* ════════════════════════════════════════════════════════════
   TRANSFORM AI SECTION
   ════════════════════════════════════════════════════════════ */
.transform-section { padding: 72px 0; background: var(--bg); }
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.transform-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 16px;
}
.transform-content h2 .accent { color: var(--accent); }
.transform-content > p {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 28px;
}
.transform-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.transform-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #CBD5E1;
}
.transform-features li i { color: var(--accent); flex-shrink: 0; }
.transform-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tm-metric {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s, border-color 0.3s;
}
.tm-metric:hover { transform: translateY(-4px); border-color: rgba(0,81,229,0.25); }
.tm-metric-num {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.tm-metric-label { font-size: 0.78rem; color: #94A3B8; font-weight: 500; }

/* ════════════════════════════════════════════════════════════
   DEVOPS SECTION
   ════════════════════════════════════════════════════════════ */
.devops-section {
  padding: 96px 0;
  background: #080f1e;
  position: relative;
  overflow: hidden;
}
.devops-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,81,229,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.devops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.devops-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 16px;
}
.devops-accent { color: #F59E0B; }
.devops-content > p {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 28px;
}
.devops-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.devops-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #CBD5E1;
}
.devops-list li i { color: #F59E0B; flex-shrink: 0; }
.devops-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.devops-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 22px;
  transition: background 0.3s, border-color 0.3s;
}
.devops-card:hover {
  background: rgba(0,81,229,0.06);
  border-color: rgba(0,81,229,0.2);
}
.devops-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,81,229,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 12px;
}
.devops-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.devops-card p { font-size: 0.78rem; color: #64748B; line-height: 1.55; }

/* ════════════════════════════════════════════════════════════
   PORTFOLIO CURTAIN ANIMATION
   ════════════════════════════════════════════════════════════ */
.portfolio-card {
  position: relative;
  overflow: hidden;
}
.portfolio-card .curtain-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  z-index: 4;
  transform: translateY(0);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
}
.portfolio-card.curtain-open .curtain-overlay {
  transform: translateY(-102%);
}

/* ════════════════════════════════════════════════════════════
   WALL OF FAME
   ════════════════════════════════════════════════════════════ */
.fame-section { padding: 68px 0; background: var(--bg); }
.fame-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0;
}
.fame-badge {
  flex: 1 1 calc(14.28% - 16px);
  min-width: 130px;
  background: #111d30;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.fame-badge:hover {
  transform: translateY(-6px);
  border-color: rgba(0,81,229,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.fame-badge img { width: 72px; height: 72px; object-fit: contain; }
.fame-badge-icon {
  width: 72px; height: 72px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
}
.fame-badge-name { font-size: 0.75rem; font-weight: 600; color: #94A3B8; text-align: center; }

/* ════════════════════════════════════════════════════════════
   FAQ SECTION (INDEX)
   ════════════════════════════════════════════════════════════ */
.idx-faq-section {
  padding: 72px 0;
  background: #080f1e;
}
.idx-faq-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}
.idx-faq-left h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 14px;
}
.idx-faq-left h2 span { color: var(--accent); }
.idx-faq-left p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 32px;
}
.idx-faq-list { display: flex; flex-direction: column; gap: 12px; }
.idx-faq-item {
  background: #111d30;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.idx-faq-item.idx-open { border-color: rgba(0,81,229,0.3); }
.idx-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  transition: color 0.2s;
}
.idx-faq-item.idx-open .idx-faq-q { color: #6395FF; }
.idx-faq-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
  font-size: 0.7rem;
  color: #94A3B8;
}
.idx-faq-item.idx-open .idx-faq-ico {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.idx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}
.idx-faq-item.idx-open .idx-faq-a { max-height: 300px; padding: 0 24px 20px; }
.idx-faq-a p { font-size: 0.85rem; color: #64748B; line-height: 1.75; }

/* ════════════════════════════════════════════════════════════
   CONTACT FORM SECTION
   ════════════════════════════════════════════════════════════ */
.contact-form-section { padding: 64px 0; background: var(--bg); }
.contact-form-wrap {
  background: #111d30;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
}
.cf-left {
  background: linear-gradient(160deg, #0a1628 0%, #0d1f40 100%);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cf-left::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,81,229,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cf-rocket { font-size: 3.5rem; margin-bottom: 28px; position: relative; z-index: 1; }
.cf-left h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cf-left h2 span { color: #6395FF; }
.cf-left > p {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.cf-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.cf-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #CBD5E1;
}
.cf-check {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(0,81,229,0.18);
  border: 1.5px solid rgba(0,81,229,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #6395FF;
  font-size: 0.65rem;
}
.cf-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 28px 0;
}
.cf-trust-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cf-trust-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #94A3B8;
}
.cf-trust-note { font-size: 0.72rem; color: #475569; margin-top: 14px; display: flex; align-items: center; gap: 6px; }
.cf-right { padding: 56px 44px; background: #0d1929; }
.cf-right h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-1); margin-bottom: 5px; }
.cf-right > p { font-size: 0.85rem; color: #64748B; margin-bottom: 28px; }
.cf-form { display: flex; flex-direction: column; gap: 14px; }
.cf-input, .cf-textarea {
  background: #111d30;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: max(16px, 0.88rem); /* 16px minimum prevents iOS auto-zoom */
  color: var(--text-1);
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: #475569; }
.cf-input:focus, .cf-textarea:focus {
  outline: none;
  border-color: rgba(0,81,229,0.5);
  box-shadow: 0 0 0 3px rgba(0,81,229,0.1);
}
.cf-textarea { resize: vertical; min-height: 100px; }
.cf-captcha-row {
  background: #111d30;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cf-captcha-q { font-size: 0.88rem; color: #94A3B8; font-weight: 600; white-space: nowrap; }
.cf-captcha-ans {
  background: #162032;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  padding: 7px 12px;
  width: 90px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--text-1);
}
.cf-captcha-ans:focus { outline: none; border-color: rgba(0,81,229,0.4); }
.cf-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.cf-submit:hover {
  background: #003BB5;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,81,229,0.4);
}
.cf-form-note {
  font-size: 0.72rem;
  color: #475569;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ════════════════════════════════════════════════════════════
   OUR OFFICES
   ════════════════════════════════════════════════════════════ */
.offices-section {
  padding: 72px 0;
  background: #060d1a;
  border-top: 3px solid var(--accent);
}
.offices-heading {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 52px;
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.office-col {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.office-col:last-child { border-right: none; }
.office-col:first-child { padding-left: 0; }
.office-illus { width: 96px; flex-shrink: 0; }
.office-illus img { width: 100%; height: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.office-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.office-info p { font-size: 0.82rem; color: #94A3B8; line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .transform-grid { grid-template-columns: 1fr; gap: 48px; }
  .devops-grid { grid-template-columns: 1fr; gap: 48px; }
  .idx-faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; gap: 32px; }
  .office-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 32px; }
  .office-col:last-child { border-bottom: none; padding-bottom: 0; }
  .office-col:first-child { padding-left: 0; }
}
@media (max-width: 768px) {
  .transform-metrics { grid-template-columns: repeat(2, 1fr); }
  .devops-cards { grid-template-columns: 1fr; }
  .fame-badges { gap: 12px; }
  .fame-badge { min-width: 100px; padding: 18px 10px; }
  .fame-badge img { width: 56px; height: 56px; }
  .fame-badge-icon { width: 56px; height: 56px; }
  .cf-left, .cf-right { padding: 36px 24px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { padding: 120px 0 80px; }
  .hero-content { max-width: 100%; }
  .hero-trust { justify-content: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tech-master-body { grid-template-columns: 1fr; height: auto; }
  .tech-master-sidebar { flex-direction: row; flex-wrap: wrap; gap: 4px; overflow-y: visible; }
  .tm-cat { flex: 0 0 auto; min-width: 150px; flex-direction: column; gap: 6px; text-align: center; padding: 12px 14px; }
  .tm-cat-icon { width: 32px; height: 32px; font-size: 0.8rem; }
  .tm-cat-label { font-size: 0.75rem; }
  .tm-cat-arrow { display: none; }
  .tech-master-right { height: auto; max-height: none; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle  { display: flex; }
  .hero-inner { padding: 100px 0 70px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { padding: 48px 28px; }
  .tm-icons-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .tm-cat { min-width: 130px; }
}

/* ════════════════════════════════════════════════════════════
   HERO NETWORK CANVAS
   ════════════════════════════════════════════════════════════ */
#heroNet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}
.hero-overlay { z-index: 2; }
.hero-inner   { position: relative; z-index: 3; }

/* ════════════════════════════════════════════════════════════
   SERVICE IMAGE CARDS  (replaces old .service-card layout)
   ════════════════════════════════════════════════════════════ */
.svc-img-card {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.svc-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,128,255,0.22);
}
.svc-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.58s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.svc-img-card:hover .svc-img-bg { transform: scale(1.07); }

.svc-img-base-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,10,22,0.18) 0%, rgba(5,10,22,0.65) 60%, rgba(5,10,22,0.92) 100%);
  transition: opacity .3s;
}
.svc-img-card:hover .svc-img-base-overlay { opacity: .35; }

/* static label — visible by default, hides on hover */
.svc-img-static {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  transition: opacity .28s ease, transform .28s ease;
}
.svc-img-card:hover .svc-img-static {
  opacity: 0;
  transform: translateY(10px);
}
.svc-img-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0080ff 0%, #6d28d9 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 11px;
  box-shadow: 0 8px 22px rgba(0,128,255,0.45);
}
.svc-img-icon i { color: #fff; font-size: 19px; }
.svc-img-static h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* hover panel — slides up from bottom */
.svc-img-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(2,8,28,0.96) 0%, rgba(0,22,72,0.97) 100%);
  border-top: 2px solid rgba(0,128,255,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  transform: translateY(100%);
  transition: transform .40s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.svc-img-card:hover .svc-img-hover { transform: translateY(0); }
.svc-img-hover h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1.28;
}
.svc-img-hover p {
  color: rgba(200,215,240,0.75);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.svc-img-hover-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 500;
  font-size: 12.5px;
  padding: 8px 16px;
  border-radius: 8px;
  width: fit-content;
  transition: background .2s, border-color .2s, gap .2s;
  letter-spacing: 0.01em;
}
.svc-img-hover-cta:hover {
  background: rgba(0,128,255,0.2);
  border-color: rgba(0,128,255,0.5);
  gap: 10px;
}

@media (max-width: 860px) {
  .svc-img-card { aspect-ratio: 16/10; }
  .svc-img-hover { transform: none; background: linear-gradient(175deg,rgba(2,8,28,.96) 0%,rgba(0,22,72,.97) 100%); }
  .svc-img-static { display: none; }
}
@media (max-width: 540px) {
  .svc-img-card { aspect-ratio: 16/9; }
}

/* ════════════════════════════════════════════════════════════
   AI CTA STRIP  (below transform section)
   ════════════════════════════════════════════════════════════ */
.ai-cta-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #04090f 0%, #060e1c 50%, #040b17 100%);
  border-top: 1px solid rgba(0,81,229,.2);
  border-bottom: 1px solid rgba(0,81,229,.2);
}
.ai-cta-strip-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #0051E5 30%, #38bdf8 60%, transparent 100%);
}
.ai-cta-strip-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  background-image: radial-gradient(circle, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 22px 22px;
}
.ai-cta-strip-glow-l {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(0,81,229,.15);
  filter: blur(90px);
  top: -120px; left: -80px;
  pointer-events: none;
}
.ai-cta-strip-glow-r {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(56,189,248,.1);
  filter: blur(70px);
  bottom: -80px; right: 200px;
  pointer-events: none;
}
.ai-cta-strip-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 40px;
  min-height: 64px;
}
@media (max-width: 960px) {
  .ai-cta-strip-inner { grid-template-columns: 1fr; }
  .ai-cta-img-col { display: none; }
}
.ai-cta-strip-left {
  padding: 52px 0;
}
.ai-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 14px;
}
.ai-cta-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  animation: ai-cta-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ai-cta-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(56,189,248,.6); }
  50%      { box-shadow: 0 0 0 7px rgba(56,189,248,0); }
}
.ai-cta-strip-left h3 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 10px;
  line-height: 1.18;
}
.ai-cta-grad-txt {
  background: linear-gradient(135deg, #0051E5, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-cta-strip-left p {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 500px;
}
.ai-cta-strip-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ai-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0051E5;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  transition: background .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}
.ai-cta-btn-primary:hover {
  background: #003db3;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,81,229,.35);
}
.ai-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,.12);
  color: #F1F5F9;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.ai-cta-btn-ghost:hover {
  border-color: #0051E5;
  background: rgba(0,81,229,.1);
}
/* Image column */
.ai-cta-img-col {
  position: relative;
  height: 280px;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}
.ai-cta-img-frame {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.ai-cta-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
}
.ai-cta-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #04090f 0%, transparent 35%),
              linear-gradient(to top, #04090f 0%, transparent 30%);
  z-index: 1;
}
.ai-cta-img-chips {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ai-cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,81,229,.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 50px;
  letter-spacing: .03em;
}

/* ════════════════════════════════════════════════════════════
   INDUSTRIES SECTION  (index page, below DevOps)
   ════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   INDUSTRY JOURNEY SECTION — v3 CAROUSEL
   ═══════════════════════════════════════════════════════════ */
.ij-section {
  padding: 72px 0 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}


/* ── TOP BAR ── */
.ij-topbar {
  display: flex; align-items: center; gap: 32px;
  max-width: 1440px; margin: 0 auto 44px; padding: 0 40px;
}
.ij-tb-eyebrow {
  flex: 1; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.32); display: flex; align-items: center; gap: 12px; white-space: nowrap;
}
.ij-tb-eyebrow::before, .ij-tb-eyebrow::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1);
}
.ij-tb-counter { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.ij-tc-cur { color: #fff; font-size: 15px; }
.ij-tc-sep { color: rgba(255,255,255,.3); }
.ij-tc-tot { color: rgba(255,255,255,.38); }
.ij-tc-line { width: 44px; height: 1px; background: rgba(255,255,255,.12); margin-left: 10px; position: relative; overflow: hidden; }
.ij-tc-prog { position: absolute; left: 0; top: 0; height: 100%; background: rgba(255,255,255,.6); transition: width .4s ease; }
.ij-tb-nav { display: flex; gap: 8px; flex-shrink: 0; }
.ij-nav-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6); font-size: 13px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.ij-nav-btn:hover:not(:disabled) { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.3); }
.ij-nav-btn:disabled { opacity: .28; cursor: not-allowed; }

/* ── MAIN ROW ── */
.ij-main { display: flex; align-items: flex-start; gap: 0; max-width: 1440px; margin: 0 auto; padding: 0 0 0 40px; }

/* ── RIGHT COL (carousel + stats stacked) ── */
.ij-right-col { flex: 1; display: flex; flex-direction: column; min-width: 0; overflow: hidden; }

/* ── LEFT PANEL ── */
.ij-left { width: 432px; flex-shrink: 0; padding-right: 52px; }
.ij-heading { font-size: clamp(2.35rem,3.75vw,3.45rem); font-weight: 800; line-height: 1.06; color: #fff; margin-bottom: 16px; }
.ij-heading-accent {
  display: block;
  background: linear-gradient(135deg,#7c6fff,#4d8fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ij-lead { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.72; margin-bottom: 22px; }
.ij-divider { width: 44px; height: 2px; background: linear-gradient(90deg,#7c6fff,#4d8fff); border-radius: 2px; margin-bottom: 26px; }
.ij-feats { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.ij-feat { display: flex; align-items: flex-start; gap: 13px; }
.ij-feat-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  border: 1px solid transparent; display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.ij-feat-title { font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.ij-feat-sub { font-size: 11px; color: rgba(255,255,255,.4); }
.ij-cta {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(124,111,255,.45); color: #a78bfa;
  background: transparent; border-radius: 10px;
  padding: 12px 22px; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all .22s; text-decoration: none; font-family: inherit;
}
.ij-cta:hover { background: rgba(124,111,255,.1); border-color: #7c6fff; color: #fff; }
.ij-cta i { font-size: 11px; }

/* ── CAROUSEL ── */
.ij-carousel-outer { overflow: hidden; min-width: 0; }
.ij-carousel-track { display: flex; gap: 16px; transition: transform .52s cubic-bezier(.4,0,.2,1); will-change: transform; align-items: stretch; }

/* ── INDUSTRY CARD ── */
.ij-ind-card {
  width: 213px; min-height: 540px; flex-shrink: 0;
  border-radius: 20px; overflow: hidden; position: relative;
  cursor: pointer; border: 1px solid rgba(255,255,255,.08);
  transition: width .38s cubic-bezier(.4,0,.2,1), transform .32s, box-shadow .32s, border-color .32s;
}
/* First card is full width by default */
.ij-carousel-track .ij-ind-card:first-child { width: 300px; }
/* When any non-first card is hovered: expand it, shrink first */
.ij-carousel-track:has(.ij-ind-card:not(:first-child):hover) .ij-ind-card:first-child { width: 213px; }
.ij-ind-card:not(:first-child):hover { width: 300px; }
.ij-ind-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.55); border-color: rgba(255,255,255,.2); }
.ij-ind-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .55s ease; }
.ij-ind-card:hover .ij-ind-card-bg { transform: scale(1.07); }
.ij-ind-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.5) 40%, rgba(0,0,0,.93) 100%);
}
.ij-ind-card-tint { position: absolute; inset: 0; opacity: .35; transition: opacity .3s; }
.ij-ind-card:hover .ij-ind-card-tint { opacity: .5; }
.ij-ind-card-content { position: absolute; inset: 0; z-index: 3; padding: 22px 20px 24px; display: flex; flex-direction: column; }
.ij-ind-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 26px; border-radius: 7px;
  font-size: 11px; font-weight: 800; color: #fff; margin-bottom: 14px; align-self: flex-start;
}
.ij-ind-title { font-size: 1.35rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.ij-ind-desc { font-size: 11.5px; color: rgba(255,255,255,.52); line-height: 1.65; margin-bottom: 16px; }
.ij-ind-bullets { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.ij-ind-bullet { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: rgba(255,255,255,.75); }
.ij-ind-check {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 7px; color: #fff;
}
.ij-ind-explore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; text-decoration: none;
  margin-top: 18px; transition: gap .2s;
}
.ij-ind-explore:hover { gap: 10px; }
.ij-ind-explore i { font-size: 11px; }

/* ── BOTTOM STATS — sits inside .ij-right-col, directly below carousel ── */
.ij-bottom { padding: 28px 0 60px; }
.ij-bottom-label {
  text-align: center; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.ij-bottom-label::before, .ij-bottom-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.08); }
.ij-bstats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.ij-bstat {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 18px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  transition: background .2s, border-color .2s;
}
.ij-bstat:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.13); }
.ij-bstat-icon { font-size: 22px; margin-bottom: 4px; }
.ij-bstat-val { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.ij-bstat-lbl { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 3px; }

/* ── ANIMATIONS ── */
@keyframes ij-fade-up { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes ij-shimmer { 0%{background-position:-200% center} 100%{background-position:200% center} }
.ij-ind-card { animation: ij-fade-up .45s ease-out both; }
.ij-ind-card:nth-child(2) { animation-delay:.07s; }
.ij-ind-card:nth-child(3) { animation-delay:.14s; }
.ij-ind-card:nth-child(4) { animation-delay:.21s; }

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .ij-topbar,.ij-main { padding-left:28px; }
  .ij-left { width:340px; padding-right:32px; }
  .ij-ind-card { width:196px; }
  .ij-carousel-track .ij-ind-card:first-child { width:230px; }
  .ij-carousel-track:has(.ij-ind-card:not(:first-child):hover) .ij-ind-card:first-child { width:196px; }
  .ij-ind-card:not(:first-child):hover { width:230px; }
}
@media (max-width:768px) {
  .ij-topbar{flex-wrap:wrap;gap:14px;padding:0 20px}
  .ij-tb-eyebrow{order:2;flex-basis:100%}
  .ij-main{flex-direction:column;padding:0 20px}
  .ij-right-col{overflow:hidden;width:100%}
  .ij-left{width:100%;padding-right:0}
  .ij-bstats{grid-template-columns:1fr 1fr}
  .ij-bottom{padding:20px 0 36px}
  .ij-ind-card,.ij-carousel-track .ij-ind-card:first-child { width:230px; }
  .ij-carousel-track:has(.ij-ind-card:not(:first-child):hover) .ij-ind-card:first-child,
  .ij-ind-card:not(:first-child):hover { width:230px; }
}
@media (max-width:480px) { .ij-ind-card { min-height:460px; } }
@media (max-width:480px) { .ij-ind-card{width:256px;min-height:480px} .ij-bstat-val{font-size:1.9rem} }


/* ════════════════════════════════════════════════════════════
   HERO AURORA ORBS (replaces canvas neural network)
   ════════════════════════════════════════════════════════════ */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 2;           /* above overlay, below content */
  overflow: hidden;
  pointer-events: none;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,81,229,0.28) 0%, transparent 68%);
  top: -15%; left: -8%;
  animation: orbDrift1 20s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.18) 0%, transparent 68%);
  top: 30%; right: 8%;
  animation: orbDrift2 26s ease-in-out infinite;
}
.orb-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(99,102,241,0.16) 0%, transparent 68%);
  bottom: 5%; left: 35%;
  animation: orbDrift3 18s ease-in-out infinite;
}
.orb-4 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,81,229,0.22) 0%, transparent 68%);
  top: 45%; right: 25%;
  animation: orbDrift1 30s ease-in-out infinite reverse;
}
@keyframes orbDrift1 {
  0%,100% { transform: translate(0, 0); }
  33%     { transform: translate(55px, -40px); }
  66%     { transform: translate(-30px, 45px); }
}
@keyframes orbDrift2 {
  0%,100% { transform: translate(0, 0); }
  33%     { transform: translate(-45px, 35px); }
  66%     { transform: translate(40px, -55px); }
}
@keyframes orbDrift3 {
  0%,100% { transform: translate(0, 0); }
  50%     { transform: translate(30px, -30px); }
}

/* Override old z-index stacking */
#heroNet { display: none; }   /* hide in case element still exists */
.hero-overlay { z-index: 1; }
.hero-inner   { position: relative; z-index: 3; }

/* ── Hero eyebrow ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(99,189,248,0.9);
  background: rgba(0,81,229,0.12);
  border: 1px solid rgba(0,81,229,0.28);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 22px;
  animation: eyebrowIn 0.8s ease both;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  animation: dotPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.35; transform: scale(0.7); }
}
@keyframes eyebrowIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero title — line-by-line reveal ── */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: lineReveal 0.75s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-line em { font-style: normal; }
.hl-1 { animation-delay: 0.15s; }
.hl-2 { animation-delay: 0.32s; }
.hl-3 { animation-delay: 0.49s; }
@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Hero subtitle + actions + trust stagger ── */
.hero-sub-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: lineReveal 0.75s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
}
.hero-actions-anim {
  opacity: 0;
  transform: translateY(16px);
  animation: lineReveal 0.7s cubic-bezier(0.22,1,0.36,1) 0.82s forwards;
}
.hero-trust-anim {
  opacity: 0;
  animation: lineReveal 0.7s ease 1.05s forwards;
}

/* ── Ghost CTA button ── */
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost-hero:hover {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* ════════════════════════════════════════════════════════════
   CLIENT LOGOS MARQUEE — REVAMPED
   ════════════════════════════════════════════════════════════ */
.clients-marquee {
  background: #060d1a;
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}
/* Ambient glow behind heading */
.clients-marquee::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 960px; height: 420px;
  background: radial-gradient(ellipse at 50% 20%, rgba(0,81,229,0.14), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
/* ── Section header ── */
.cm-header {
  text-align: center;
  padding: 0 24px 28px;
  position: relative;
  z-index: 1;
}
.cm-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4f8ef7;
  margin-bottom: 22px;
}
.cm-overline::before,
.cm-overline::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(to right, transparent, #4f8ef7);
  opacity: 0.7;
}
.cm-overline::after {
  background: linear-gradient(to left, transparent, #4f8ef7);
}
.cm-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.025em;
}
.cm-title em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cm-subtitle {
  font-size: 15px;
  color: rgba(148,163,184,0.68);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}
/* ── Decorative divider ── */
.cm-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07) 25%, rgba(255,255,255,0.07) 75%, transparent);
  position: relative;
  z-index: 1;
}
/* ── Marquee rows ── */
.cm-track-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 0 32px;
  position: relative;
  z-index: 1;
}
.cm-row {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
/* Fade edges */
.cm-row::before,
.cm-row::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.cm-row::before { left: 0;  background: linear-gradient(to right, #060d1a, transparent); }
.cm-row::after  { right: 0; background: linear-gradient(to left,  #060d1a, transparent); }

.cm-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
}
.cm-row--rtl .cm-track {
  animation: marqueeRTL 40s linear infinite;
}
.cm-row--ltr .cm-track {
  animation: marqueeLTR 40s linear infinite;
}
@keyframes marqueeRTL {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeLTR {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.cm-logo {
  height: 43px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.35s, filter 0.35s;
  user-select: none;
}
.cm-logo--light {
  filter: none;
  opacity: 0.5;
}
.cm-logo:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(96,165,250,0.45));
}
.cm-logo--light:hover {
  filter: drop-shadow(0 0 8px rgba(96,165,250,0.4));
  opacity: 1;
}
/* Pause on hover */
.cm-row:hover .cm-track { animation-play-state: paused; }

/* ── Trust stats strip ── */
.cm-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 24px 36px;
  position: relative;
  z-index: 1;
}
.cm-trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 44px;
}
.cm-trust-num {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.cm-trust-lbl {
  font-size: 10.5px;
  color: rgba(148,163,184,0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-top: 6px;
}
.cm-trust-pipe {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .cm-track { animation: none !important; }
  .aurora-orb { animation: none !important; }
  .hero-line, .hero-sub-anim, .hero-actions-anim, .hero-trust-anim, .hero-eyebrow {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
@media (max-width: 768px) {
  .cm-trust-stat { padding: 8px 22px; }
  .cm-trust-num  { font-size: 20px; }
}
@media (max-width: 640px) {
  .cm-logo { height: 32px; max-width: 124px; }
  .cm-track { gap: 48px; }
  .clients-marquee { padding-top: 36px; }
  .cm-header { padding-bottom: 20px; }
  .cm-trust-pipe { display: none; }
  .cm-trust-strip { gap: 4px 0; }
}

/* ══════════════════════════════════════════════════════════════
   FEATURED PROJECTS — CARD PEEK CAROUSEL
   ══════════════════════════════════════════════════════════════ */

.fp-wrap {
  background: #060d1a;
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

/* ── Section heading ── */
.fp-section-hdr {
  text-align: center;
  padding: 0 24px 52px;
}
.fp-section-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
}
.fp-section-title {
  font-size: clamp(26px, 2.9vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.022em;
  max-width: 880px;
  margin: 0 auto;
}

/* ── Slider viewport ── */
.fp-slider {
  position: relative;
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.fp-slider:active { cursor: grabbing; }

/* ── Sliding track ── */
.fp-track {
  display: flex;
  gap: 20px;
  transition: transform 0.62s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Individual card ── */
.fp-card {
  flex: 0 0 72vw;
  min-height: 490px;
  border-radius: 0;
  overflow: hidden;
  display: block;
  background: var(--card-bg, linear-gradient(145deg, #1a0938 0%, #5b21b6 100%));
  position: relative;
  transition: box-shadow 0.45s, opacity 0.45s, transform 0.45s;
  box-shadow:
    0 36px 90px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.07),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: scale(0.96);
  border: 1px solid rgba(255,255,255,0.06);
}
.fp-card.fp-card--active {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 48px 120px rgba(0,0,0,0.60),
    0 0 0 1px rgba(255,255,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.fp-card:not(.fp-card--active) {
  opacity: 0.55;
}

/* Glass-light shine + bottom shadow sweep */
.fp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.10) 0%,
      rgba(255,255,255,0.03) 30%,
      transparent 55%
    ),
    linear-gradient(to bottom,
      transparent 55%,
      rgba(0,0,0,0.45) 100%
    );
  pointer-events: none;
  z-index: 3;
}

/* ── Card left: text content ── */
.fp-card-left {
  padding: 48px 44px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 4;
  max-width: 58%;
}

/* Logo wordmark */
.fp-card-logo { margin-bottom: 14px; }
.fp-card-logo-main {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.fp-card-logo-sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-top: 3px;
}

/* Description */
.fp-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  line-height: 1.72;
  margin-bottom: 22px;
  max-width: 370px;
}

/* 2×2 Stats grid */
.fp-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}
.fp-stat {
  padding: 13px 16px;
  background: rgba(0,0,0,0.14);
}
.fp-stat-num {
  display: block;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.fp-stat-lbl {
  display: block;
  font-size: 10.5px;
  color: rgba(255,255,255,0.58);
  margin-top: 4px;
  font-weight: 500;
}
.fp-stats-vdiv { background: rgba(255,255,255,0.16); }
.fp-stats-hdiv {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255,255,255,0.16);
}

/* Testimonial quote */
.fp-quote {
  background: rgba(0,0,0,0.14);
  border-left: 2px solid rgba(255,255,255,0.30);
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  margin-bottom: 22px;
}
.fp-quote p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.62;
  font-style: italic;
}
.fp-quote cite {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.52);
  margin-top: 7px;
  font-style: normal;
  letter-spacing: 0.02em;
}

/* CTA button */
.fp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.38);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.10);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.fp-card-cta:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.65);
  transform: translateX(4px);
}
.fp-card-cta .fp-cta-chevron {
  font-size: 15px;
  font-weight: 300;
  opacity: 0.85;
}

/* ── Card right: full-card immersive background ── */
.fp-card-right {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.fp-card-right img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  filter:
    drop-shadow(-40px 0 56px rgba(0,0,0,0.80))
    drop-shadow(0 32px 48px rgba(0,0,0,0.60))
    saturate(1.10) brightness(0.92);
  z-index: 1;
}
/*
 * Immersive overlay — card colour bleeds left → image reveals right.
 * Left: dark + card accent (text always readable)
 * Right: transparent (screenshot shows fully)
 */
.fp-card-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(0,0,0,0.98)           0%,
      rgba(0,0,0,0.94)          14%,
      rgba(var(--cr),0.82)      30%,
      rgba(var(--cr),0.52)      54%,
      rgba(var(--cr),0.18)      72%,
      transparent               88%
    );
  z-index: 2;
  pointer-events: none;
}
/* Radial colour glow — blooms behind the app image */
.fp-card-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 88% 38%,
      rgba(var(--cr),0.32) 0%,
      transparent 68%
    ),
    radial-gradient(ellipse 40% 40% at 70% 80%,
      rgba(var(--cr),0.18) 0%,
      transparent 70%
    );
  z-index: 0;
  pointer-events: none;
}
/* Subtle light-seam where gradient meets image — premium depth cue */
.fp-card::after {
  content: '';
  position: absolute;
  top: 8%; bottom: 8%;
  left: calc(56% - 1px);
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0.04) 75%,
    transparent 100%
  );
  z-index: 5;
  pointer-events: none;
  border-radius: 1px;
}

/* ── Tab navigation ── */
.fp-tabs {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 28px 40px 0;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.fp-tabs::-webkit-scrollbar { display: none; }

.fp-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 15px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  min-width: 130px;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  color: #fff;
}
.fp-tab:hover:not(.fp-tab--active) {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-2px);
}
.fp-tab.fp-tab--active {
  background: rgba(var(--cr, 124,58,237), 0.85);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(var(--cr, 124,58,237), 0.38);
}
.fp-tab-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1;
}
.fp-tab-industry {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.04em;
}

/* ── Bottom bar (arrows + view all) ── */
.fp-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 0 44px;
}
.fp-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.70);
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.fp-nav-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.36);
  color: #fff;
  transform: scale(1.1);
}
.fp-nav-btn:disabled { opacity: 0.22; cursor: default; pointer-events: none; }
.fp-view-all {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  transition: color 0.2s;
  text-decoration: none;
}
.fp-view-all:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .fp-card { flex: 0 0 82vw; }
  .fp-tabs { padding: 24px 24px 0; }
}
@media (max-width: 860px) {
  .fp-card { flex: 0 0 88vw; min-height: 500px; }
  .fp-card-left { max-width: 68%; }
  .fp-section-title { font-size: clamp(22px, 5.5vw, 36px); }
}
@media (max-width: 600px) {
  .fp-wrap { padding: 56px 0 0; }
  .fp-section-hdr { padding-bottom: 36px; }
  .fp-card { flex: 0 0 91vw; border-radius: 0; min-height: 500px; }
  .fp-card-left { padding: 28px 22px 100px; max-width: 100%; }
  /* Mobile: full image visible, faded as backdrop */
  .fp-card-right img {
    max-width: none;
    height: 100%;
    opacity: 0.45;
  }
  .fp-card-right::before {
    background:
      linear-gradient(to bottom,
        rgba(0,0,0,0.97) 0%,
        rgba(0,0,0,0.90) 35%,
        rgba(var(--cr),0.45) 60%,
        rgba(var(--cr),0.10) 85%,
        transparent 100%
      );
  }
  .fp-card::after { display: none; }
  .fp-stats-grid { margin-bottom: 14px; }
  .fp-stat { padding: 10px 12px; }
  .fp-stat-num { font-size: 18px; }
  .fp-tabs { gap: 8px; padding: 18px 16px 0; }
  .fp-tab { padding: 12px 16px; min-width: 100px; }
  .fp-tab-name { font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE PHONE — COMPREHENSIVE FIXES (≤ 768px / ≤ 480px)
   ════════════════════════════════════════════════════════════ */

/* ── Hero ── */
@media (max-width: 600px) {
  .hero-inner { padding: 88px 0 56px; }
  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .hero-subtitle { font-size: 0.92rem; margin-bottom: 28px; max-width: 100%; }
  .hero-actions { gap: 10px; margin-bottom: 32px; flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── Stats strip below hero ── */
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.9rem; }
  .stat-item { padding: 18px 8px; }
  .stat-label { font-size: 0.75rem; }
}

/* ── Section header ── */
@media (max-width: 600px) {
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: clamp(1.45rem, 6.5vw, 1.9rem); margin-bottom: 10px; }
  .section-header p { font-size: 0.88rem; line-height: 1.6; }
}

/* ── Global section padding ── */
@media (max-width: 600px) {
  .services-section,
  .idx-ind-section,
  .ij-section,
  .tech-master-section,
  .partners-section,
  .fame-section,
  .insights-section,
  .testimonials-section,
  .idx-faq-section,
  .devops-section { padding: 52px 0; }
}
@media (max-width: 480px) {
  .services-section,
  .idx-ind-section,
  .tech-master-section,
  .partners-section,
  .fame-section,
  .insights-section,
  .testimonials-section,
  .idx-faq-section,
  .devops-section { padding: 40px 0; }
}

/* ── Transform section ── */
@media (max-width: 480px) {
  .tf-right { height: 220px !important; }
  .tf-left-inner { padding: 36px 20px !important; }
  .tf-left-inner h2 { font-size: 1.55rem !important; }
  .tf-metrics-inline { gap: 10px !important; }
  .tf-metrics-inline .tm-metric { padding: 14px 12px !important; }
  .tm-metric-num { font-size: 1.7rem; }
  .tf-img-chip { font-size: 11px; padding: 6px 12px; }
}

/* ── Services cards ── */
@media (max-width: 480px) {
  .services-grid { gap: 5px; }
  .svc-img-card { aspect-ratio: 16/9; border-radius: 5px; }
  .svc-img-hover h3 { font-size: 1rem; }
  .svc-img-hover p { font-size: 0.82rem; line-height: 1.5; }
}

/* ── Portfolio featured projects (480px) ── */
@media (max-width: 480px) {
  .fp-card { flex: 0 0 93vw; }
  .fp-card-desc { font-size: 13px; }
  .fp-quote p { font-size: 12px; }
  .fp-bottom-bar { padding: 18px 0 36px; }
}

/* ── Promo banners ── */
@media (max-width: 600px) {
  .promo-banner-body { padding: 40px 20px !important; }
  .promo-banner-content h2 { font-size: clamp(20px, 6.5vw, 28px); }
  .promo-banner-content p { font-size: 14px; margin-bottom: 20px; }
  .ai-cta-strip-btns { flex-direction: column; gap: 10px; }
  .ai-cta-btn-primary,
  .ai-cta-btn-ghost { text-align: center; justify-content: center; }
}

/* ── Industries grid ── */
@media (max-width: 360px) {
  .idx-ind-grid { grid-template-columns: 1fr; }
}

/* ── Tech master sidebar (categories horizontal scroll) ── */
@media (max-width: 480px) {
  .tech-master-sidebar { gap: 4px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .tm-cat { min-width: 100px; padding: 10px 8px; font-size: 0.7rem; }
  .tm-cat-icon { width: 28px; height: 28px; font-size: 0.7rem; }
  .tm-cat-label { font-size: 0.68rem; }
}

/* ── Partners grid ── */
@media (max-width: 480px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .partner-card { padding: 18px 12px; border-radius: 12px; }
}

/* ── Wall of fame badges ── */
@media (max-width: 480px) {
  .fame-badges { gap: 10px; justify-content: center; }
  .fame-badge { flex: 0 0 calc(50% - 5px); min-width: 0; padding: 16px 8px; }
  .fame-badge img, .fame-badge-icon { width: 48px; height: 48px; }
  .fame-badge-name { font-size: 10px; }
}

/* ── Testimonials ── */
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
@media (max-width: 480px) {
  .faq-item-hd { padding: 16px 18px; font-size: 0.88rem; }
  .faq-item-bd { padding: 0 18px 16px; font-size: 0.88rem; }
  .idx-faq-section .section-header { text-align: center; }
}

/* ── Contact form ── */
@media (max-width: 480px) {
  .contact-form-section { padding: 52px 0; }
  .cf-left, .cf-right { padding: 28px 20px; border-radius: 0; }
  .cf-field input, .cf-field textarea, .cf-field select { font-size: 16px; /* prevent iOS zoom */ }
}

/* ── Offices ── */
@media (max-width: 480px) {
  .offices-section { padding: 52px 0; }
  .office-city { font-size: 1rem; }
}

/* ── Footer ── */
@media (max-width: 480px) {
  .footer { padding: 44px 0 0; }
  .footer-grid { gap: 28px; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-connect-card { padding: 12px 14px; gap: 10px; }
  .footer-connect-label { font-size: 10px; }
  .footer-connect-value { font-size: 0.8rem; }
  .footer-bottom { padding: 20px 0; gap: 8px; }
}

/* ── Prevent horizontal overflow globally ── */
@media (max-width: 600px) {
  .container { padding-left: 18px; padding-right: 18px; }
}


/* ════════════════════════════════════════════════════════════
   UNIFIED PAGE BACKGROUND
   All sections inherit the single body gradient — transparent.
   Hero keeps its own video background (untouched).
   ════════════════════════════════════════════════════════════ */

.clients-marquee,
.transform-section,
.services-section,
.ai-svcs-section,
.idx-ind-section,
.ij-section,
.fp-section,
.testimonials-section,
.devops-section,
.idx-faq-section,
.fame-section,
.insights-section,
.contact-form-section,
.offices-section,
.tech-master-section,
.partners-section          { background: transparent !important; }

/* Promo banner body had an inline background — strip it */
.promo-banner-body         { background: transparent !important; }

/* ── Tech-master: was white-on-white, adapt for dark background ── */
.tech-master-section .section-header h2 { color: #f1f5f9 !important; }
.tech-master-section .section-header p  { color: #94a3b8 !important; }
.tech-master-right                       { background: rgba(15,23,42,0.70) !important; }
.tm-group-title                          { color: #e2e8f0 !important; }
.tm-icon-card {
  background: rgba(15,23,42,0.65) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.tm-icon-card:hover {
  background: rgba(0,81,229,0.14) !important;
  border-color: rgba(0,81,229,0.35) !important;
}
.tm-icon-card span { color: #cbd5e1 !important; }

/* ── Partners: was white-on-white, adapt for dark background ── */
.partners-section .section-header h2 { color: #f1f5f9 !important; }
.partners-section .section-header p  { color: #94a3b8 !important; }
.partner-card {
  background: rgba(15,23,42,0.60) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.partner-card:hover {
  background: rgba(0,81,229,0.12) !important;
  border-color: rgba(0,81,229,0.30) !important;
}
.partner-card span { color: #94a3b8 !important; }


/* ════════════════════════════════════════════════════════════
   INDEX PAGE — SECTION STYLES  (moved from inline <style>)
════════════════════════════════════════════════════════════ */
  /* ─── Section Background Visual Enhancements ───────────────── */

  /* Ensure position:relative on all enhanced sections */
  .transform-section,
  .services-section,
  .idx-ind-section,
  .ij-section,
  .testimonials-section,
  .idx-faq-section,
  .tech-master-section,
  .devops-section,
  .partners-section,
  .fame-section,
  .success-section,
  .insights-section { position: relative; overflow: hidden; }

  /* Containers sit above all pseudo-element backgrounds */
  .transform-section .container,
  .services-section .container,
  .idx-ind-section .container,
  .ij-section .ij-wrap,
  .testimonials-section .container,
  .idx-faq-section .container,
  .tech-master-section .container,
  .devops-section .container,
  .partners-section .container,
  .fame-section .container,
  .success-section .container,
  .insights-section .container { position: relative; z-index: 1; }

  /* ── Transform section: subtle line grid + right-side glow ── */
  .transform-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(0,81,229,0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,81,229,0.045) 1px, transparent 1px);
    background-size: 58px 58px;
  }
  .transform-section::after {
    content: '';
    position: absolute; top: -120px; right: -120px; pointer-events: none; z-index: 0;
    width: 680px; height: 680px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,81,229,0.13) 0%, transparent 65%);
    filter: blur(10px);
  }

  /* ── Services section: dot grid + left glow ── */
  .services-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(circle, rgba(0,81,229,0.1) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
  }
  .services-section::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px; pointer-events: none; z-index: 0;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(99,149,255,0.1) 0%, transparent 65%);
    filter: blur(12px);
  }

  /* ── Industries section: grid lines + bottom-right orb ── */
  .idx-ind-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .idx-ind-section::after {
    content: '';
    position: absolute; bottom: -60px; right: -60px; pointer-events: none; z-index: 0;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 65%);
    filter: blur(10px);
  }

  /* ── DevOps section: diagonal line-grid ── */
  .devops-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(0,81,229,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,81,229,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
  }
  .devops-section::after {
    content: '';
    position: absolute; top: -80px; left: 40%; pointer-events: none; z-index: 0;
    width: 600px; height: 400px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,81,229,0.09) 0%, transparent 65%);
    filter: blur(14px);
  }

  /* ── Tech master section: scan-line overlay ── */
  .tech-master-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: repeating-linear-gradient(
      0deg, transparent, transparent 3px,
      rgba(0,81,229,0.018) 3px, rgba(0,81,229,0.018) 4px
    );
  }
  .tech-master-section::after {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none; z-index: 0;
    width: 70%; height: 70%; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,81,229,0.07) 0%, transparent 70%);
    filter: blur(20px);
  }

  /* ── Testimonials section: centre glow ── */
  .testimonials-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none; z-index: 0;
    width: 80%; height: 80%; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,81,229,0.07) 0%, transparent 70%);
    filter: blur(24px);
  }
  .testimonials-section::after {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(circle, rgba(0,81,229,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
  }

  /* ── FAQ section: dot grid ── */
  .idx-faq-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(circle, rgba(0,81,229,0.07) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
  }

  /* ── Partners section: subtle grid ── */
  .partners-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
  }

  /* ── Fame / awards section: dot grid + top orb ── */
  .fame-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(circle, rgba(245,158,11,0.06) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
  }
  .fame-section::after {
    content: '';
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    pointer-events: none; z-index: 0;
    width: 600px; height: 300px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 65%);
    filter: blur(16px);
  }

  /* ── Glowing section dividers ── */
  .idx-glow-divider {
    height: 1px; border: none; margin: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0,81,229,0.45) 30%,
                rgba(139,92,246,0.35) 60%, transparent 100%);
  }

  /* ── Floating corner decoration shapes ── */
  .section-corner-deco {
    position: absolute; pointer-events: none; z-index: 0;
    opacity: 0.06; border-radius: 50%;
    border: 1.5px solid rgba(0,81,229,1);
  }
  .section-corner-deco-1 { width: 320px; height: 320px; top: -100px; right: -80px; }
  .section-corner-deco-2 { width: 200px; height: 200px; bottom: -60px; left: -40px; }

  /* ── Transform section: full-bleed image layout ── */
  .transform-section { padding: 0 !important; overflow: hidden; }
  .transform-section::before { background-size: 58px 58px; }
  .transform-section::after { display: none; } /* remove old glow — new one is on tf-left */

  .tf-wrap {
    display: flex; align-items: stretch; min-height: 460px;
  }

  /* LEFT column */
  .tf-left {
    flex: 1 1 54%;
    display: flex; align-items: center;
    position: relative; z-index: 1;
  }
  .tf-left::after {
    content: ''; position: absolute; top: -80px; left: -80px;
    width: 460px; height: 460px; border-radius: 50%; pointer-events: none; z-index: 0;
    background: radial-gradient(circle, rgba(0,81,229,0.11) 0%, transparent 65%);
    filter: blur(10px);
  }
  .tf-left-inner {
    position: relative; z-index: 1;
    width: 100%;
    padding: 52px 52px 52px clamp(20px, calc((100vw - 1200px) / 2 + 20px), 96px);
    max-width: 660px;
  }
  .tf-left-inner h2 {
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    font-weight: 700; color: var(--text-1, #F1F5F9); margin-bottom: 12px;
  }
  .tf-left-inner > p {
    font-size: 0.94rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 0;
  }

  /* Horizontal stat strip */
  .tf-stat-strip {
    display: flex;
    align-items: stretch;
    margin: 22px 0 26px;
    background: rgba(0,81,229,0.06);
    border: 1px solid rgba(0,81,229,0.15);
    border-radius: 14px;
    overflow: hidden;
  }
  .tf-stat-item {
    flex: 1;
    text-align: center;
    padding: 16px 10px;
    position: relative;
    transition: background 0.22s;
  }
  .tf-stat-item:hover { background: rgba(0,81,229,0.1); }
  .tf-stat-item + .tf-stat-item::before {
    content: '';
    position: absolute; left: 0; top: 18%; bottom: 18%;
    width: 1px; background: rgba(0,81,229,0.2);
  }
  .tf-stat-num {
    display: block;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 700;
    color: #0051E5;
    line-height: 1.1;
    margin-bottom: 5px;
  }
  .tf-stat-label {
    display: block;
    font-size: 10.5px;
    color: #94A3B8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.35;
  }

  /* RIGHT column */
  .tf-right {
    flex: 0 0 46%; position: relative; overflow: hidden;
    min-height: 380px;
  }
  .tf-right img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
  }
  .tf-img-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      to right,
      rgba(10,18,35,0.72) 0%,
      rgba(10,18,35,0.2) 28%,
      transparent 52%
    ),
    linear-gradient(to top, rgba(10,18,35,0.55) 0%, transparent 30%);
  }
  .tf-img-chips {
    position: absolute; bottom: 20px; left: 20px; right: 20px;
    z-index: 2; display: flex; gap: 7px; flex-wrap: wrap;
  }
  .tf-img-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(6,10,20,0.78); backdrop-filter: blur(12px);
    border: 1px solid rgba(0,81,229,0.45); border-radius: 50px;
    padding: 6px 14px; font-size: 11.5px; font-weight: 700; color: #93c5fd;
  }

  /* Responsive */
  @media (max-width: 960px) {
    .tf-wrap { flex-direction: column-reverse; min-height: auto; }
    .tf-right { flex: none; width: 100%; height: 260px; min-height: 0; }
    .tf-left  { flex: none; }
    .tf-left-inner { padding: 44px 24px; max-width: 100%; }
  }
  @media (max-width: 600px) {
    .tf-right { height: 200px; }
    .tf-left-inner { padding: 32px 18px; }
    .tf-stat-strip { margin: 18px 0 22px; }
    .tf-stat-item { padding: 13px 6px; }
    .tf-stat-num { font-size: 1.3rem; }
    .tf-stat-label { font-size: 9.5px; }
    .tf-img-chips { bottom: 12px; left: 12px; right: 12px; gap: 5px; }
    .tf-img-chip { font-size: 10.5px; padding: 5px 10px; }
  }

  /* ── DevOps section: simple centered stat layout ── */
  .devops-center {
    text-align: center; max-width: 760px; margin: 0 auto; padding: 80px 24px;
  }
  .devops-kpi-row {
    display: flex; align-items: center;
    margin: 28px 0 40px;
    background: rgba(0,81,229,0.06); border: 1px solid rgba(0,81,229,0.15);
    border-radius: 18px; padding: 28px 0;
  }
  .devops-kpi { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 20px; }
  .devops-kpi-div { width: 1px; height: 52px; background: rgba(0,81,229,0.2); flex-shrink: 0; }
  .devops-kpi-num { font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: #F59E0B; line-height: 1; }
  .devops-kpi-num sub { font-size: 0.5em; font-weight: 700; vertical-align: middle; }
  .devops-kpi-txt { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.07em; text-align: center; }
  .devops-center h2 { font-size: clamp(22px, 2.8vw, 36px); font-weight: 600; color: #F1F5F9; margin-bottom: 14px; line-height: 1.3; }
  .devops-center > p { font-size: 16px; color: #94A3B8; line-height: 1.7; margin: 0 auto 28px; max-width: 580px; }
  .devops-tag-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
  .devops-tag-row span {
    background: rgba(0,81,229,0.08); border: 1px solid rgba(0,81,229,0.2);
    color: rgba(255,255,255,0.65); padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 500;
  }
  @media (max-width: 600px) {
    .devops-kpi-row { flex-direction: column; gap: 20px; padding: 24px; }
    .devops-kpi-div { width: 60%; height: 1px; }
  }

  /* ── Promo banners: diagonal split design (Appther-branded) ── */
  .promo-banner {
    display: flex; min-height: 240px;
    position: relative; overflow: hidden;
    border-top: 1px solid rgba(0,81,229,0.12);
    border-bottom: 1px solid rgba(0,81,229,0.12);
  }
  .promo-banner-body {
    flex: 0 0 62%; position: relative; z-index: 2;
    display: flex; align-items: center; background: #07101e;
    padding: 40px 80px 40px max(24px, calc((100vw - 1200px) / 2));
    clip-path: polygon(0 0, 100% 0, calc(100% - 120px) 100%, 0 100%);
  }
  .promo-banner-content { max-width: 520px; }
  .promo-banner-content .section-tag { margin-bottom: 14px; display: inline-block; }
  .promo-banner-content h2 {
    font-size: clamp(24px, 2.8vw, 38px); font-weight: 700;
    color: #F1F5F9; line-height: 1.2; margin-bottom: 12px;
  }
  .promo-banner-content h2 span {
    background: linear-gradient(135deg, #38bdf8, #60A5FA);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .promo-banner-content p { font-size: 15px; color: #94A3B8; line-height: 1.65; margin-bottom: 24px; max-width: 440px; }
  .promo-banner-visual {
    flex: 1; position: relative;
    background: linear-gradient(145deg, #0051E5 0%, #003ab5 100%);
    overflow: hidden; margin-left: -120px; z-index: 1;
  }
  /* Photo + overlay (AI CTA banner only) */
  .promo-banner-photo {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
  }
  .promo-banner-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(145deg, rgba(0,61,200,0.78) 0%, rgba(0,40,160,0.88) 100%);
  }
  .promo-banner-wm {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%); z-index: 2;
    font-size: clamp(90px, 13vw, 190px); font-weight: 700;
    color: rgba(255,255,255,0.09); line-height: 1;
    pointer-events: none; user-select: none; letter-spacing: -0.05em;
  }
  .promo-banner-tri1 {
    position: absolute; top: 0; right: 0; z-index: 2; width: 0; height: 0; border-style: solid;
    border-width: 0 200px 320px 0; border-color: transparent rgba(255,255,255,0.07) transparent transparent;
  }
  .promo-banner-tri2 {
    position: absolute; bottom: 0; left: 50px; z-index: 2; width: 0; height: 0; border-style: solid;
    border-width: 240px 0 0 180px; border-color: transparent transparent transparent rgba(255,255,255,0.05);
  }
  .promo-banner-glow {
    position: absolute; z-index: 2; width: 260px; height: 260px; border-radius: 50%;
    background: rgba(56,189,248,0.22); filter: blur(55px);
    top: -60px; left: 25%; pointer-events: none;
  }
  @media (max-width: 880px) {
    .promo-banner-body { flex: 1; clip-path: none; padding: 36px 24px; }
    .promo-banner-visual { display: none; }
  }
  @media (max-width: 480px) {
    .promo-banner { min-height: 0; }
    .promo-banner-body { padding: 36px 18px; }
    .promo-banner-content h2 { font-size: clamp(20px, 6.5vw, 26px); }
    .promo-banner-content p { font-size: 14px; margin-bottom: 18px; max-width: 100%; }
  }

  /* ── Gradient top-border dividers between sections ── */
  .transform-section,
  .services-section,
  .ai-svcs-section,
  .devops-section,
  .idx-ind-section,
  .ij-section,
  .tech-master-section,
  .partners-section,
  .fame-section,
  .insights-section,
  .testimonials-section,
  .idx-faq-section,
  .contact-form-section {
    border-top: 1px solid rgba(0,81,229,0.1);
    box-shadow: 0 -1px 0 0 rgba(139,92,246,0.06);
  }

  /* ── AI Services expanding cards ── */
  .ai-svcs-section {
    padding: 64px 0 68px;
    background: #07101e;
    position: relative;
    overflow: hidden;
  }
  .ai-svcs-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(0,81,229,0.06) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(99,102,241,0.05) 0%, transparent 50%);
  }
  .ai-svcs-header { text-align: left; margin-bottom: 36px; position: relative; z-index: 1; }
  .ai-svcs-header .section-tag { margin-bottom: 12px; display: inline-block; }
  .ai-svcs-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 14px;
  }
  .ai-svcs-header h2 span { color: #3b82f6; }
  .ai-svcs-header p {
    font-size: 15.5px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 560px;
    margin: 0;
  }

  .ai-cards-row {
    display: flex;
    gap: 14px;
    height: 280px;
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
  }
  .ai-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 14px;
    transition: flex 0.52s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
  }
  .ai-card.active {
    flex: 2.6;
    box-shadow: 0 0 0 2px rgba(59,130,246,0.55), 0 24px 56px rgba(0,0,0,0.55);
  }

  .ai-card-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
  }
  .ai-card.active .ai-card-bg { transform: scale(1.05); }

  .ai-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to top,
      rgba(4, 8, 28, 0.88) 0%,
      rgba(4, 8, 28, 0.45) 45%,
      rgba(0, 15, 50, 0.15) 100%
    );
    transition: background 0.4s ease;
    border-radius: 14px;
  }
  .ai-card.active .ai-card-overlay {
    background: linear-gradient(
      to top,
      rgba(3, 8, 35, 0.94) 0%,
      rgba(0, 25, 90, 0.65) 52%,
      rgba(0, 50, 160, 0.18) 100%
    );
  }

  .ai-card-accent {
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 14px 14px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1) 0.06s;
  }
  .ai-card.active .ai-card-accent { transform: scaleX(1); }

  .ai-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px 22px;
    z-index: 2;
  }
  .ai-card-icon {
    width: 38px; height: 38px;
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(99,153,255,0.3);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
    backdrop-filter: blur(6px);
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height 0.4s ease 0.05s, opacity 0.3s ease 0.08s,
                background 0.3s ease, border-color 0.3s ease;
  }
  .ai-card.active .ai-card-icon {
    max-height: 60px; opacity: 1;
    background: rgba(59,130,246,0.35);
    border-color: rgba(99,153,255,0.65);
  }
  .ai-card-icon svg { width: 18px; height: 18px; color: #93c5fd; }

  .ai-card-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 10px;
    transition: color 0.3s ease, font-size 0.3s ease;
  }
  .ai-card.active .ai-card-content h3 {
    color: #60a5fa;
    font-size: 17px;
  }

  .ai-card-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin: 0 0 14px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1) 0.06s,
                opacity 0.35s ease 0.1s;
  }
  .ai-card.active .ai-card-desc { max-height: 120px; opacity: 1; }

  .ai-card-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 600;
    color: #60a5fa;
    text-decoration: none;
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height 0.38s ease 0.12s, opacity 0.28s ease 0.16s;
  }
  .ai-card.active .ai-card-link { max-height: 36px; opacity: 1; }
  .ai-card-link svg { width: 13px; height: 13px; transition: transform 0.2s ease; }
  .ai-card-link:hover svg { transform: translateX(3px); }

  @media (max-width: 860px) {
    .ai-cards-row { height: auto; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
    .ai-card { flex: none; width: 100%; height: 240px; }
    .ai-card.active { flex: none; width: 100%; }
    .ai-card-icon { max-height: 60px; opacity: 1; }
  }
  @media (max-width: 480px) {
    .ai-svcs-section { padding: 52px 0 56px; }
    .ai-card { height: 210px; }
    .ai-card-content { padding: 18px 16px; }
    .ai-cards-row { gap: 10px; margin-bottom: 10px; }
  }

  /* ── Insights section: floating pattern ── */
  .insights-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      linear-gradient(rgba(0,81,229,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,81,229,0.03) 1px, transparent 1px);
    background-size: 52px 52px;
  }

  /* ── Why Businesses Partner section ── */
  .ai-partner-section {
    background: linear-gradient(135deg, #1a56db 0%, #0c34a3 60%, #0a2882 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .ai-partner-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
    background-size: 34px 34px;
  }
  .ai-partner-section::after {
    content: '';
    position: absolute; top: -120px; right: -120px; pointer-events: none; z-index: 0;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
    filter: blur(20px);
  }
  .ai-partner-section .container { position: relative; z-index: 1; }
  .ai-partner-header { margin-bottom: 44px; }
  .ai-partner-header h2 {
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
  }
  .ai-partner-header p {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 640px;
  }
  .ai-partner-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .ai-partner-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 28px 22px 28px;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  }
  .ai-partner-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.13);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  }
  .ai-partner-icon {
    width: 54px; height: 54px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .ai-partner-icon svg { width: 26px; height: 26px; color: #fff; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .ai-partner-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.35;
  }
  .ai-partner-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
  }
  @media (max-width: 900px) {
    .ai-partner-cards { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .ai-partner-cards { grid-template-columns: 1fr; }
    .ai-partner-header h2 { font-size: 1.5rem; }
  }

  /* ── AI Products Section ── */
  .aiprod-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
  }
  .aiprod-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 60% 50% at 0% 50%, rgba(0,81,229,0.07) 0%, transparent 65%),
      radial-gradient(ellipse 45% 40% at 100% 20%, rgba(59,130,246,0.05) 0%, transparent 60%);
  }
  .aiprod-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
  }

  /* Left panel */
  .aiprod-left { position: sticky; top: 96px; }
  .aiprod-overline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 100px;
    border: 1px solid rgba(0,81,229,0.30);
    background: rgba(0,81,229,0.08);
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: #7eb5ff;
    margin-bottom: 26px;
  }
  .aiprod-overline svg { width: 13px; height: 13px; fill: #7eb5ff; }
  .aiprod-heading {
    font-size: clamp(36px, 4.2vw, 62px); font-weight: 600;
    line-height: 1.06; letter-spacing: -0.03em;
    color: #fff; margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif;
  }
  .aiprod-heading em {
    font-style: normal;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .aiprod-sub {
    font-size: 1.05rem; color: rgba(148,163,184,0.8);
    margin-bottom: 20px; line-height: 1.5;
  }
  .aiprod-divider {
    width: 52px; height: 3px;
    background: linear-gradient(90deg, #0051E5, #3b82f6);
    border-radius: 2px; margin-bottom: 22px;
  }
  .aiprod-desc {
    font-size: 0.92rem; color: rgba(148,163,184,0.68);
    line-height: 1.85; margin-bottom: 30px;
  }
  .aiprod-pills {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px;
  }
  .aiprod-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 100px;
    font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.68);
  }
  .aiprod-pill svg {
    width: 13px; height: 13px; fill: none; stroke: #5b9aff;
    stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
  }

  /* CTA card */
  .aiprod-cta-card {
    background:
      linear-gradient(135deg,
        rgba(4, 10, 26, 0.92)     0%,
        rgba(4, 11, 28, 0.82)     45%,
        rgba(0, 81, 229, 0.28)    75%,
        rgba(0, 50, 160, 0.22)   100%
      ),
      url('https://d1x94fzb9nbn9r.cloudfront.net/assets/images/ai-agents-cta.jpg') center / cover no-repeat;
    border: 1px solid rgba(0,81,229,0.25);
    border-radius: 16px; padding: 26px;
    display: flex; gap: 18px; align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow:
      0 8px 32px rgba(0,0,0,0.45),
      0 0 0 1px rgba(255,255,255,0.05),
      inset 0 1px 0 rgba(255,255,255,0.07);
  }
  .aiprod-cta-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,0.55) 50%, transparent 100%);
    pointer-events: none;
  }
  .aiprod-cta-icon {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
    background: linear-gradient(135deg, #0051E5, #3b82f6);
    display: flex; align-items: center; justify-content: center;
  }
  .aiprod-cta-icon svg {
    width: 20px; height: 20px; fill: none; stroke: #fff;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  }
  .aiprod-cta-text h4 {
    font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 2px;
  }
  .aiprod-cta-link {
    font-size: 0.98rem; font-weight: 700;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block; margin-bottom: 10px;
  }
  .aiprod-cta-text p {
    font-size: 0.83rem; color: rgba(148,163,184,0.65);
    line-height: 1.6; margin-bottom: 16px;
  }
  .aiprod-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #0051E5 0%, #3b82f6 100%);
    color: #fff; font-size: 13px; font-weight: 700;
    border-radius: 8px; text-decoration: none; letter-spacing: 0.02em;
    transition: opacity 0.2s, transform 0.2s;
  }
  .aiprod-cta-btn:hover { opacity: 0.88; transform: translateX(3px); }
  .aiprod-cta-btn svg {
    width: 15px; height: 15px; fill: none; stroke: #fff;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    transition: transform 0.2s;
  }
  .aiprod-cta-btn:hover svg { transform: translateX(3px); }

  /* Right panel */
  .aiprod-right {
    background: rgba(6, 12, 28, 0.65);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.30);
  }
  .aiprod-list {
    max-height: 620px; overflow-y: auto;
    scrollbar-width: thin; scrollbar-color: rgba(59,130,246,0.25) transparent;
  }
  .aiprod-list::-webkit-scrollbar { width: 4px; }
  .aiprod-list::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.25); border-radius: 10px; }
  .aiprod-list::-webkit-scrollbar-track { background: transparent; }

  .aiprod-item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center; gap: 18px;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.055);
    transition: background 0.2s;
    cursor: default;
  }
  .aiprod-item:last-child { border-bottom: none; }
  .aiprod-item:hover { background: rgba(0,81,229,0.04); }

  .aiprod-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(0,81,229,0.10);
    border: 1px solid rgba(59,130,246,0.18);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
  }
  .aiprod-item:hover .aiprod-icon {
    background: rgba(0,81,229,0.18);
    border-color: rgba(59,130,246,0.35);
  }
  .aiprod-icon svg {
    width: 25px; height: 25px; fill: none;
    stroke: #5b9aff;
    stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  }

  .aiprod-item-body h3 {
    font-size: 0.95rem; font-weight: 700; color: #fff;
    margin: 0 0 4px; line-height: 1.3;
  }
  .aiprod-item-body p {
    font-size: 0.8rem; color: rgba(148,163,184,0.65);
    line-height: 1.6; margin: 0;
  }
  .aiprod-item-link {
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(59,130,246,0.25);
    background: rgba(59,130,246,0.08);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.18s;
  }
  .aiprod-item-link:hover {
    background: rgba(59,130,246,0.20);
    border-color: rgba(59,130,246,0.55);
    transform: translateX(3px);
  }
  .aiprod-item-link svg {
    width: 14px; height: 14px; fill: none; stroke: #5b9aff;
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  }

  @media (max-width: 940px) {
    .aiprod-wrap { grid-template-columns: 1fr; gap: 40px; padding: 0 28px; }
    .aiprod-left { position: static; }
    .aiprod-list { max-height: none; }
  }
  @media (max-width: 560px) {
    .aiprod-section { padding: 64px 0; }
    .aiprod-wrap { padding: 0 18px; gap: 28px; }
    .aiprod-item { grid-template-columns: 44px 1fr; gap: 14px; padding: 16px 18px; }
    .aiprod-item-link { display: none; }
    .aiprod-icon { width: 44px; height: 44px; border-radius: 11px; }
    .aiprod-icon svg { width: 21px; height: 21px; }
  }


  /* ── Dark card CTA (Apptunix-style) ── */
  /* ══ Scale-up CTA — new design ══ */
  .dark-cta-section {
    padding: 56px max(20px, calc((100vw - 1200px) / 2));
    background: var(--bg);
  }
  .scale-cta-card {
    display: flex;
    align-items: stretch;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  }

  /* Left body */
  .scale-cta-body {
    flex: 1;
    padding: 52px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .scale-cta-logo { margin-bottom: 24px; }
  .scale-cta-logo img { height: 36px; width: auto; display: block; }

  .scale-cta-heading {
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 900;
    color: #0d1b3e;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
    text-transform: uppercase;
  }
  .scale-cta-desc {
    font-size: clamp(14px, 1.05vw, 16px);
    color: #4b5563;
    line-height: 1.72;
    margin: 0 0 32px;
    max-width: 460px;
  }
  .scale-cta-desc strong { color: #0d1b3e; }

  .scale-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    background: #0051E5;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    width: fit-content;
    border: none;
    cursor: pointer;
  }
  .scale-cta-btn:hover {
    background: #003fba;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,81,229,0.42);
    color: #fff;
  }
  .scale-cta-btn i { font-size: 14px; transition: transform 0.25s; }
  .scale-cta-btn:hover i { transform: translateX(4px); }

  /* Right visual panel */
  .scale-cta-visual {
    width: 440px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #fff;
  }

  /* Blue diagonal shape (large "A" silhouette) */
  .scale-tri {
    position: absolute;
    pointer-events: none;
  }
  .scale-tri-blue {
    top: -8%;
    right: -4%;
    width: 90%;
    height: 116%;
    clip-path: polygon(44% 0%, 100% 0%, 100% 100%, 56% 100%);
    background: linear-gradient(160deg, #1655f5 0%, #0040d0 100%);
    z-index: 1;
  }
  .scale-tri-yellow {
    bottom: 0;
    right: 0;
    width: 54%;
    height: 46%;
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
    background: #f5d400;
    z-index: 2;
  }

  /* Sparkle stars */
  .scale-sparkle {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    line-height: 1;
  }
  .scale-sparkle-1 {
    bottom: 12%;
    right: 6%;
    font-size: 22px;
    color: rgba(255,255,255,0.75);
  }
  .scale-sparkle-2 {
    bottom: 8%;
    right: 14%;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
  }
  .scale-sparkle-3 {
    top: 10%;
    right: 10%;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
  }

  /* Person / visual image */
  .scale-cta-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-48%);
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    z-index: 3;
    display: block;
  }

  /* Responsive */
  @media (max-width: 960px) {
    .scale-cta-visual { display: none; }
    .scale-cta-body { padding: 40px 32px; }
  }
  @media (max-width: 540px) {
    .dark-cta-section { padding: 36px 18px; }
    .scale-cta-body { padding: 32px 24px; }
    .scale-cta-heading { font-size: clamp(22px, 6vw, 32px); }
    .scale-cta-btn { padding: 14px 28px; font-size: 13px; }
  }

  /* ══ Build CTA — variant (mirrored geometry, indigo/amber accent) ══ */
  .build-cta-card { box-shadow: 0 24px 64px rgba(0,0,0,0.15); }

  /* Blue shape mirrored: comes from the left side of the visual panel */
  .build-tri-blue {
    top: -8%;
    left: -4%;
    right: auto;
    width: 90%;
    height: 116%;
    clip-path: polygon(0% 0%, 56% 0%, 44% 100%, 0% 100%);
    background: linear-gradient(160deg, #1655f5 0%, #0040d0 100%);
    z-index: 1;
  }
  /* Amber accent triangle — bottom-left corner */
  .build-tri-accent {
    bottom: 0;
    left: 0;
    right: auto;
    width: 54%;
    height: 46%;
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
    background: #f5d400;
    z-index: 2;
  }
  /* ── Build CTA: app-mockup visual (replaces mismatched image) ── */
  .build-visual-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
  }

  /* Browser / app window frame */
  .build-browser {
    width: 90%;
    max-width: 340px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0,0,0,0.38), 0 0 0 1px rgba(255,255,255,0.12);
    position: relative;
    z-index: 2;
  }
  .build-browser-bar {
    background: #f1f5f9;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e2e8f0;
  }
  .build-browser-dots { display: flex; gap: 5px; }
  .build-browser-dots span {
    width: 9px; height: 9px; border-radius: 50%; display: block;
  }
  .build-browser-dots span:nth-child(1) { background: #f43f5e; }
  .build-browser-dots span:nth-child(2) { background: #f59e0b; }
  .build-browser-dots span:nth-child(3) { background: #10b981; }
  .build-browser-url {
    flex: 1;
    background: #e2e8f0;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 10.5px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
  }

  /* Window body */
  .build-browser-body { padding: 14px; background: #fff; }

  /* 2×2 project type grid */
  .build-proj-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 14px;
  }
  .build-proj-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 9px 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 600;
    color: #334155;
    font-family: 'Montserrat', sans-serif;
  }
  .build-proj-card i { color: #0051E5; font-size: 12px; flex-shrink: 0; }

  /* Progress bars */
  .build-prog-row {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .build-prog-item { display: flex; flex-direction: column; gap: 4px; }
  .build-prog-label {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
  }
  .build-prog-label span:last-child { color: #0051E5; }
  .build-prog-track {
    height: 5px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
  }
  .build-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #0051E5 0%, #60a5fa 100%);
    border-radius: 10px;
  }

  /* Floating achievement badges */
  .build-badge {
    position: absolute;
    z-index: 5;
    background: rgba(5, 10, 25, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 81, 229, 0.45);
    color: #93c5fd;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 50px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .build-badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px rgba(16,185,129,0.7);
    flex-shrink: 0;
  }
  .build-badge-1 { top: 13%; right: 6%; }
  .build-badge-2 { bottom: 26%; right: 5%; }
  .build-badge-3 { bottom: 11%; left: 5%; }

  /* ── Success Story Section ── */
  .success-section { padding: 80px 0 64px; background: var(--bg); position: relative; overflow: hidden; }
  .success-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(circle, rgba(0,81,229,0.06) 1.5px, transparent 1.5px);
    background-size: 34px 34px;
  }
  .success-section::after {
    content: ''; position: absolute; bottom: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,81,229,0.1) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
  }
  .success-section .container { position: relative; z-index: 1; }
  .success-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 64px; }
  .success-left .section-tag { margin-bottom: 14px; display: inline-block; }
  .success-left h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
  .success-left h2 span { color: var(--accent); }
  .success-left > p { font-size: 0.96rem; color: #94a3b8; line-height: 1.75; margin-bottom: 36px; max-width: 440px; }
  .success-milestones { display: flex; flex-direction: column; gap: 0; }
  .sm-item { display: flex; gap: 16px; align-items: flex-start; padding: 0 0 24px; position: relative; }
  .sm-item:not(:last-child) .sm-dot::after {
    content: ''; position: absolute; left: 7px; top: 18px;
    width: 2px; height: calc(100% - 18px);
    background: linear-gradient(to bottom, rgba(0,81,229,0.5), rgba(0,81,229,0.1));
  }
  .sm-dot {
    width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
    background: var(--accent); border: 3px solid rgba(0,81,229,0.25);
    margin-top: 2px; position: relative; z-index: 1;
    box-shadow: 0 0 0 4px rgba(0,81,229,0.12);
  }
  .sm-content { display: flex; flex-direction: column; gap: 3px; }
  .sm-year { font-size: 0.72rem; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
  .sm-text { font-size: 0.88rem; color: #94a3b8; line-height: 1.55; }
  .success-stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  }
  .ssg-card {
    background: #162032; border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px; padding: 22px 18px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
  }
  .ssg-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0,81,229,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .ssg-card:hover { transform: translateY(-5px); border-color: rgba(0,81,229,0.3); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
  .ssg-card--large { grid-column: span 2; flex-direction: row; align-items: center; gap: 20px; text-align: left; padding: 24px 28px; }
  .ssg-card--accent { background: linear-gradient(135deg, rgba(0,81,229,0.2) 0%, rgba(0,81,229,0.08) 100%); border-color: rgba(0,81,229,0.25); }
  .ssg-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(0,81,229,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: 12px; }
  .ssg-card--large .ssg-icon { margin-bottom: 0; }
  .ssg-icon i { font-size: 1.1rem; color: var(--accent); }
  .ssg-num { font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; display: flex; align-items: baseline; gap: 2px; }
  .ssg-card--large .ssg-num { font-size: 2.6rem; }
  .ssg-suf { font-size: 1.4rem; font-weight: 700; color: var(--accent); }
  .ssg-lbl { font-size: 0.73rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }
  .ssg-card--large .ssg-lbl { margin-top: 4px; font-size: 0.78rem; }
  /* Awards strip */
  .success-awards { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
  .success-awards-label { font-size: 0.72rem; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.12em; }
  .success-award-badges { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; }
  .sab-item { display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.75; transition: opacity 0.2s, transform 0.2s; }
  .sab-item:hover { opacity: 1; transform: translateY(-3px); }
  .sab-logo { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; border: 2px solid rgba(255,255,255,0.12); }
  .sab-logo img { width: 36px; height: 36px; object-fit: contain; }
  .sab-logo svg { width: 44px; height: 44px; }
  .sab-item span { font-size: 0.68rem; font-weight: 600; color: #64748b; text-align: center; }
  @media (max-width: 900px) {
    .success-inner { grid-template-columns: 1fr; gap: 40px; }
    .success-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ssg-card--large { grid-column: span 2; }
  }
  @media (max-width: 520px) {
    .success-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ssg-card--large { grid-column: span 2; flex-direction: column; text-align: center; }
    .ssg-card--large .ssg-icon { margin-bottom: 12px; }
  }

  /* ════════════════════════════════════════════════════════════
     EXPERTISE SHOWCASE — Odoo 19
  ════════════════════════════════════════════════════════════ */
  .idx-exp-section {
    padding: 72px 0 60px;
    background: transparent;
    position: relative;
    overflow: hidden;
  }

  /* Orbital SVG — top-right decorative arcs */
  .idx-exp-orbital {
    position: absolute;
    top: -60px; right: -80px;
    width: 560px; height: 560px;
    pointer-events: none; z-index: 0;
    opacity: 0.9;
  }

  .idx-exp-section .container { position: relative; z-index: 1; }

  .idx-exp-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 48px;
  }

  /* Left column */
  .idx-exp-left { display: flex; flex-direction: column; align-items: flex-start; }

  .idx-exp-h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800; line-height: 1.06; color: #fff; margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .idx-exp-h2 .exp-accent {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .idx-exp-desc {
    font-size: 14px; color: #94a3b8; line-height: 1.85;
    max-width: 480px; margin-bottom: 30px;
  }

  .idx-exp-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #0051E5 0%, #3b82f6 100%);
    color: #fff; font-size: 14px; font-weight: 700;
    padding: 14px 30px; border-radius: 50px;
    transition: transform .2s ease, box-shadow .2s ease; text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,81,229,.25);
  }
  .idx-exp-cta span { font-size: 18px; line-height: 1; }
  .idx-exp-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,81,229,.45); }

  /* Stat cards — 2×2 grid, vertical layout */
  .idx-exp-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }
  .idx-exp-stat {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    background: rgba(8, 16, 40, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(59, 130, 246, 0.14);
    border-radius: 18px; padding: 26px 18px 22px;
    transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  }
  .idx-exp-stat:hover {
    border-color: rgba(59, 130, 246, 0.38);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,81,229,.12);
  }
  .idx-exp-stat-icon {
    width: 58px; height: 58px; border-radius: 50%;
    background: rgba(59, 130, 246, 0.09);
    border: 1.5px solid rgba(59, 130, 246, 0.24);
    display: flex; align-items: center; justify-content: center;
    color: #7eb5ff; margin-bottom: 14px; flex-shrink: 0;
  }
  .idx-exp-stat-icon svg { width: 22px; height: 22px; }
  .idx-exp-stat-num {
    font-size: 36px; font-weight: 800; color: #fff; line-height: 1;
    margin-bottom: 8px; letter-spacing: -0.02em;
  }
  .idx-exp-stat-label {
    font-size: 9.5px; font-weight: 700; color: #64748b;
    text-transform: uppercase; letter-spacing: .15em; line-height: 1.55;
  }

  /* Separator */
  .idx-exp-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
    margin-bottom: 48px;
  }

  /* Module pills grid */
  .idx-exp-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }
  .idx-exp-pill {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    font-size: 13px; font-weight: 600; color: #94a3b8;
    line-height: 1.3;
    transition: background .25s, border-color .25s, color .25s, transform .2s, box-shadow .2s;
    cursor: default;
    white-space: nowrap;
  }
  .idx-exp-pill:hover {
    background: rgba(0,81,229,.08);
    border-color: rgba(0,81,229,.28);
    color: #e2e8f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,81,229,.10);
  }
  .idx-exp-pill-icon {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(59,130,246,.10);
    border: 1px solid rgba(59,130,246,.16);
    display: flex; align-items: center; justify-content: center;
    color: #5b9aff; flex-shrink: 0;
    transition: background .25s, border-color .25s;
  }
  .idx-exp-pill-icon svg { width: 16px; height: 16px; }
  .idx-exp-pill:hover .idx-exp-pill-icon {
    background: rgba(59,130,246,.18);
    border-color: rgba(59,130,246,.35);
  }

  @media (max-width: 1100px) {
    .idx-exp-grid { grid-template-columns: repeat(4, 1fr); }
    .idx-exp-pill { font-size: 12px; gap: 9px; padding: 13px 12px; }
  }
  @media (max-width: 900px) {
    .idx-exp-top { grid-template-columns: 1fr; gap: 48px; }
    .idx-exp-desc { max-width: 100%; }
    .idx-exp-grid { grid-template-columns: repeat(3, 1fr); }
    .idx-exp-pill { white-space: normal; }
    .idx-exp-orbital { width: 360px; height: 360px; top: -40px; right: -60px; }
  }
  @media (max-width: 560px) {
    .idx-exp-grid { grid-template-columns: repeat(2, 1fr); }
    .idx-exp-stats { gap: 10px; }
    .idx-exp-stat { padding: 20px 14px 18px; }
    .idx-exp-stat-icon { width: 48px; height: 48px; }
    .idx-exp-stat-icon svg { width: 18px; height: 18px; }
    .idx-exp-stat-num { font-size: 28px; }
    .idx-exp-section { padding: 56px 0 48px; }
  }

/* ═══════════════════════════════════════════════════════════════════
   HERO TRUST BADGES — floating platform cluster, right side of hero
   ═══════════════════════════════════════════════════════════════════ */

/* Wrapper — full-height overlay anchored to hero right edge */
.hero-trust-badges {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 680px;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

/* ── Orbit ring 1 — main perspective ring ── */
.trust-orbit {
  position: absolute;
  width: 460px;
  height: 460px;
  left: 30px;
  top: calc(50% - 230px);
  pointer-events: none;
  z-index: 0;
}

.trust-orbit svg {
  width: 100%;
  height: 100%;
  transform: perspective(700px) rotateX(55deg) rotateZ(-5deg);
  transform-origin: center center;
  overflow: visible;
}

.trust-orbit-ring {
  animation: orbitGlow 10s linear infinite;
}

@keyframes orbitGlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -1270; }
}

/* ── Orbit ring 2 — outer subtle halo ── */
.trust-orbit-2 {
  position: absolute;
  width: 530px;
  height: 530px;
  left: -10px;
  top: calc(50% - 265px);
  pointer-events: none;
  z-index: 0;
}

.trust-orbit-2 svg {
  width: 100%;
  height: 100%;
  transform: perspective(700px) rotateX(52deg) rotateZ(-5deg);
  transform-origin: center center;
  overflow: visible;
}

.trust-orbit-ring-2 {
  animation: orbitGlow2 18s linear infinite reverse;
}

@keyframes orbitGlow2 {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -1900; }
}

/* ── Trust badge base — crystal glass style ── */
.trust-badge {
  position: absolute;
  pointer-events: all;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  /* Crystal glass */
  background: rgba(8, 14, 38, 0.50);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.40);
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 290px;
  max-width: 310px;
  white-space: nowrap;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.50),
    0 0 0 1px rgba(0, 81, 229, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge:hover {
  border-color: rgba(0, 81, 229, 0.50);
  border-top-color: rgba(100, 170, 255, 0.55);
  box-shadow:
    0 16px 52px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 81, 229, 0.36),
    0 0 32px rgba(0, 81, 229, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

/*
 * Badge positions — right-bottom quadrant of hero.
 * bottom: 70px base clearance keeps badges above chat widget.
 * Overlay is 680px wide, right: 0.
 */
.tb-upwork {
  left: 200px;
  bottom: calc(70px + 300px);
  animation: floatBadge 5.5s ease-in-out infinite 0s;
}
.tb-goodfirms {
  left: 8px;
  bottom: calc(70px + 185px);
  animation: floatBadge 5.5s ease-in-out infinite 1.4s;
}
.tb-clutch {
  left: 326px;
  bottom: calc(70px + 145px);
  animation: floatBadge 5.5s ease-in-out infinite 2.8s;
}
.tb-designrush {
  left: 58px;
  bottom: calc(70px + 40px);
  animation: floatBadge 5.5s ease-in-out infinite 4.2s;
}

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

/* ── Logo side — 50% width, no container box ── */
.tb-logo-side {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 14px;
  /* subtle divider between logo and text */
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  min-width: 0;
  overflow: hidden;
}

.tb-logo-img {
  width: 100%;
  max-width: 130px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}

/* ── Text side — 50% width ── */
.tb-text-side {
  flex: 0 0 50%;
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

/* Both lines same font, same size — per user request */
.tb-line {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(220, 232, 255, 0.90);
  line-height: 1.35;
  white-space: normal;
}

/* ── Responsive: hide on tablet/mobile ── */
@media (max-width: 1100px) {
  .hero-trust-badges { display: none; }
}

/* ══════════════════════════════════════════
   AI CAPABILITIES — 3×3 grid revamp
══════════════════════════════════════════ */
.ai-cap-section {
  background: transparent;
  padding: 80px 0 72px;
}

.ai-cap-header {
  text-align: left;
  max-width: 640px;
  margin: 0 0 56px;
}

.ai-cap-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.ai-cap-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.75;
  margin: 0;
}

/* Grid */
.ai-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* Card */
.ai-cap-card {
  position: relative;
  padding: 40px 36px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: background 0.25s ease;
}

.ai-cap-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Border-draw effect — grows from top-left and bottom-right corners */
.ai-cap-card::before,
.ai-cap-card::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  transition: width 0.35s ease, height 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.ai-cap-card::before {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.70);
  border-left: 1px solid rgba(255, 255, 255, 0.70);
}

.ai-cap-card::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.70);
  border-right: 1px solid rgba(255, 255, 255, 0.70);
}

.ai-cap-card:hover::before,
.ai-cap-card:hover::after {
  width: 100%;
  height: 100%;
}

/* Anchor reset — cards are <a> tags */
a.ai-cap-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Icon container */
.ai-cap-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14) 0%, rgba(99, 102, 241, 0.08) 100%);
  border: 1px solid rgba(59, 130, 246, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #7eb5ff;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ai-cap-icon svg {
  width: 24px;
  height: 24px;
}

.ai-cap-card:hover .ai-cap-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.24) 0%, rgba(99, 102, 241, 0.16) 100%);
  border-color: rgba(59, 130, 246, 0.50);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.18);
}

/* Title */
.ai-cap-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  display: inline-block;
  position: relative;
}

/* Animated underline — grows left to right on hover */
.ai-cap-card h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ai-cap-card:hover h3::after {
  width: 100%;
}

/* Description */
.ai-cap-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.75;
  margin: 0;
}

/* Tablet: 2 columns */
@media (max-width: 960px) {
  .ai-cap-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-cap-card { padding: 32px 28px; }
  .ai-cap-section { padding: 64px 0 56px; }
  .ai-cap-header { margin-bottom: 44px; }
}

/* Mobile: 1 column */
@media (max-width: 560px) {
  .ai-cap-grid { grid-template-columns: 1fr; }
  .ai-cap-card { padding: 28px 22px; }
  .ai-cap-section { padding: 52px 0 44px; }
  .ai-cap-header h2 { font-size: 1.65rem; }
}

/* ── Utility: accent colour span ──────────────────────────── */
.text-accent { color: #0051E5; }

/* ── Services grid top spacing ────────────────────────────── */
.services-grid--top { margin-top: 52px; }


/* ══════════════════════════════════════════════════════════════
   INDUSTRIES WE SERVE  —  iws-* namespace
   Replaces the old ij-section carousel.
══════════════════════════════════════════════════════════════ */

/* ── Section shell ── */
.iws-section {
  position: relative;
  background: #020c24;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) 0;
}

/* ── Background glows ── */
.iws-glow-left {
  position: absolute;
  top: 5%;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,104,255,0.16) 0%, transparent 68%);
  pointer-events: none;
}
.iws-glow-right {
  position: absolute;
  bottom: -100px;
  right: -140px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,156,255,0.09) 0%, transparent 68%);
  pointer-events: none;
}

/* ── Decorative partial circles (top-right) ── */
.iws-deco-circles {
  position: absolute;
  top: -55px;
  right: -55px;
  width: 290px;
  height: 290px;
  pointer-events: none;
  opacity: 0.75;
}

/* ── Inner two-column container ── */
.iws-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 37fr 63fr;
  gap: 56px;
  align-items: center;
}

/* ══ LEFT COLUMN ══ */
.iws-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Accent line */
.iws-eyebrow-line {
  width: 38px;
  height: 2.5px;
  background: linear-gradient(90deg, #0868ff, #149cff);
  border-radius: 2px;
  margin-bottom: 18px;
}

/* Main heading */
.iws-heading {
  font-size: clamp(2.15rem, 3.55vw, 3.45rem);
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.08;
  margin: 0 0 16px;
  font-family: 'Montserrat', sans-serif;
}
.iws-heading-blue {
  color: #149cff;
  display: block;
}

/* Description */
.iws-desc {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  color: #aebbd1;
  line-height: 1.8;
  max-width: 476px;
  margin: 0 0 20px;
}

/* Benefit chips */
.iws-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 24px;
}
.iws-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(8, 104, 255, 0.06);
  border: 1px solid rgba(39, 133, 255, 0.28);
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: #c0d2ec;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
}
.iws-chip-icon {
  font-size: 13px;
  color: #149cff;
  flex-shrink: 0;
}

/* CTA button */
.iws-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  height: 58px;
  background: linear-gradient(135deg, #0868ff 0%, #0657d6 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(8, 104, 255, 0.30);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  letter-spacing: 0.01em;
}
.iws-cta-arrow {
  font-size: 19px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.22s ease;
  font-style: normal;
}
.iws-cta:hover {
  background: linear-gradient(135deg, #149cff 0%, #0868ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(8, 104, 255, 0.42);
}
.iws-cta:hover .iws-cta-arrow {
  transform: translateX(3px);
}
.iws-cta:focus-visible {
  outline: 2px solid #149cff;
  outline-offset: 3px;
}

/* ══ RIGHT COLUMN — Industry grid ══ */
.iws-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

/* Card */
.iws-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 26px 10px 24px;
  min-height: 215px;
  background: rgba(5, 25, 60, 0.55);
  border: 1px solid rgba(39, 133, 255, 0.30);
  border-radius: 14px;
  text-decoration: none;
  color: #c0d2ec;
  transition: background 0.22s ease, border-color 0.22s ease,
              transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.iws-card:hover {
  background: rgba(8, 36, 82, 0.86);
  border-color: rgba(39, 133, 255, 0.60);
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(8, 104, 255, 0.18);
}
.iws-card:focus-visible {
  outline: 2px solid #149cff;
  outline-offset: 3px;
}

/* Icon */
.iws-card-icon {
  font-size: clamp(44px, 4vw, 56px);
  color: #5ba4ff;
  transition: color 0.22s ease, transform 0.22s ease;
  line-height: 1;
}
.iws-card:hover .iws-card-icon {
  color: #8ac4ff;
  transform: scale(1.1);
}

/* Card label */
.iws-card-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #bfd0e8;
  text-align: center;
  line-height: 1.45;
  max-width: 108px;
  font-family: 'Montserrat', sans-serif;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .iws-card, .iws-card-icon, .iws-cta, .iws-cta-arrow { transition: none !important; }
}

/* ── Responsive — standard desktop 1025–1280 ── */
@media (max-width: 1280px) {
  .iws-inner { gap: 40px; }
  .iws-grid  { gap: 11px; }
}

/* ── Responsive — smaller desktop 900–1100 ── */
@media (max-width: 1100px) {
  .iws-inner {
    grid-template-columns: 42fr 58fr;
    gap: 32px;
  }
  .iws-grid { grid-template-columns: repeat(4, 1fr); }
  .iws-card { min-height: 160px; }
  .iws-card-icon { font-size: 44px; }
}

/* ── Responsive — tablet ── */
@media (max-width: 900px) {
  .iws-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .iws-content { max-width: 620px; }
  .iws-desc { max-width: 100%; }
  .iws-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .iws-card { min-height: 150px; }
  .iws-deco-circles { display: none; }
}

/* ── Responsive — mobile ── */
@media (max-width: 640px) {
  .iws-section { padding: 60px 0; }
  .iws-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .iws-card { min-height: 138px; padding: 20px 8px 18px; gap: 12px; }
  .iws-card-icon { font-size: 40px; }
  .iws-card-title { font-size: 11.5px; max-width: 100px; }
  .iws-cta { width: 100%; justify-content: center; }
  .iws-glow-left, .iws-glow-right { opacity: 0.45; }
}

/* ── Responsive — small phones ── */
@media (max-width: 420px) {
  .iws-grid { gap: 8px; }
  .iws-card { min-height: 148px; }
  .iws-heading { font-size: 2rem; }
}
