/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --ink: #080810;
  --warm-white: #faf9f6;
  --off-white: #f2f1ed;
  --blue: #1a5fff;
  --blue-lt: #4d82ff;
  --blue-pale: #e6edff;
  --gold: #c9a84c;
  --gold-pale: #fdf6e3;
  --steel: #8892a8;
  --border: rgba(8,8,16,0.09);
  --border-md: rgba(8,8,16,0.15);
  --radius: 14px;
  --radius-sm: 8px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; background:var(--warm-white); color:var(--ink); overflow-x:clip; line-height:1; }
img { display:block; max-width:100%; }
a { text-decoration:none; }

/* ═══════════════════════════════════════
   UTILITY
═══════════════════════════════════════ */
.eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--blue-pale); color:var(--blue);
  font-size:13px; font-weight:600; letter-spacing:.09em; text-transform:uppercase;
  padding:8px 18px; border-radius:100px; margin-bottom:20px; width:fit-content;
}
.eyebrow.light { color:var(--blue-lt); background:rgba(77, 130, 255, 0.15); }
.eyebrow.gold  { color:var(--gold); background:rgba(201, 168, 76, 0.15); }

.section-h {
  font-family:'Unbounded',sans-serif; font-weight:600;
  font-size:clamp(32px,4vw,52px); letter-spacing:-0.2px; line-height:1.1;
  color:var(--ink);
}
.section-h.white { color:#fff; }
.section-h em { font-style:normal; color:var(--blue); }
.section-h em.gold { color:var(--gold); }

.section-sub {
  font-size:17px; font-weight:300; line-height:1.68;
  color:var(--ink); opacity:.55; max-width:520px;
}
.section-sub.white { color:rgba(255,255,255,.5); opacity:1; }

.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'DM Sans',sans-serif; font-size:14px; font-weight:500;
  padding:12px 24px; border-radius:var(--radius-sm);
  transition:all .2s; cursor:pointer; border:none;
}
.btn-dark  { background:var(--ink); color:#fff; }
.btn-dark:hover { background:var(--blue); }
.btn-blue  { background:var(--blue); color:#fff; }
.btn-blue:hover { background:#1250e8; }
.btn-ghost { background:transparent; color:var(--ink); border:1px solid var(--border-md); }
.btn-ghost:hover { border-color:var(--blue); color:var(--blue); }
.btn-white { background:#fff; color:var(--ink); }
.btn-white:hover { opacity:.92; }
.btn-outline-white { background:transparent; color:rgba(255,255,255,.7); border:1px solid rgba(255,255,255,.2); }
.btn-outline-white:hover { border-color:rgba(255,255,255,.55); color:#fff; }
.btn-lg { padding:15px 30px; font-size:15px; border-radius:var(--radius-sm); }

/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .65s ease, transform .65s ease; }
.reveal.up { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  height:68px; padding:0 52px;
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(250,249,246,.93); backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
.nav-logo {
  font-family:'Unbounded',sans-serif; font-weight:800; font-size:21px;
  letter-spacing:-.4px; color:var(--ink); display:flex; align-items:center; gap:9px;
}
.nav-logo-mark {
  /* SWAPPABLE: Replace this SVG with your actual logo image via <img> tag */
  width:30px; height:30px;
  background:linear-gradient(135deg,#4d82ff,#1a5fff);
  clip-path:polygon(50% 0%,0% 100%,28% 62%,50% 78%,72% 62%,100% 100%);
}
.nav-logo span { color:var(--blue); }
.nav-links { display:flex; align-items:center; gap:32px; list-style:none; }
.nav-links a { font-size:14px; font-weight:400; color:var(--ink); opacity:.6; transition:opacity .2s; }
.nav-links a:hover { opacity:1; }
.nav-cta { background:var(--ink) !important; color:#fff !important; opacity:1 !important; padding:10px 20px; border-radius:6px; font-weight:500 !important; }
.nav-cta:hover { background:var(--blue) !important; }

/* ═══════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════ */
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 6px; }
.mobile-menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(250,249,246,0.98); z-index: 9999; backdrop-filter: blur(12px);
  display: flex; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu-content { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-link { font-family: 'Unbounded', sans-serif; font-size: 24px; font-weight: 600; color: var(--ink); text-decoration: none; }
.close-menu { position: absolute; top: 30px; right: 30px; background: none; border: none; color: var(--ink); cursor: pointer; padding: 10px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height:100vh; display:grid; grid-template-columns:1fr 1fr; margin-bottom: 50px;
  padding-top:68px; position:relative; overflow:hidden;
}
.hero-left {
  display:flex; flex-direction:column; justify-content:center;
  padding:80px 48px 80px 72px; position:relative; z-index:2;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--blue-pale); color:var(--blue);
  font-size:13px; font-weight:600; letter-spacing:.09em; text-transform:uppercase;
  padding:10px 20px; border-radius:100px; margin-bottom:32px; width:fit-content;
  animation:fadeUp .7s ease both;
}
.badge-pulse {
  width:6px; height:6px; background:var(--blue); border-radius:50%;
  animation:pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.65)} }

.hero h1 {
  font-family:'Unbounded',sans-serif; font-weight:800;
  font-size:clamp(34px,4vw,60px); letter-spacing:-2px; line-height:1.01;
  color:var(--ink); margin-bottom:26px; animation:fadeUp .7s .08s ease both;
}
.hero h1 em { font-style:normal; color:var(--blue); }

.hero-sub {
  font-size:18px; font-weight:300; line-height:1.68;
  color:var(--ink); opacity:.58; max-width:450px;
  margin-bottom:44px; animation:fadeUp .7s .16s ease both;
}
.hero-actions { display:flex; align-items:center; gap:14px; animation:fadeUp .7s .24s ease both; }

.trust-strip {
  display:flex; align-items:center; gap:28px; flex-wrap:wrap;
  margin-top:48px; padding-top:36px; border-top:1px solid var(--border);
  animation:fadeUp .7s .32s ease both;
}
.trust-item { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:400; color:var(--ink); opacity:.55; }
.trust-icon { width:18px; height:18px; background:var(--blue); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:9px; flex-shrink:0; opacity:1; }
.trust-sep { width:1px; height:18px; background:var(--border-md); }

.hero-stats { display:flex; gap:44px; margin-top:48px; animation:fadeUp .7s .4s ease both; }
.stat-n { font-family:'Unbounded',sans-serif; font-size:28px; font-weight:800; letter-spacing:-0.5px; color:var(--ink); line-height:1; }
.stat-n span { color:var(--blue); }
.stat-l { font-size:12px; font-weight:400; color:var(--ink); opacity:.45; margin-top:5px; }

/* HERO RIGHT — dark panel */
.hero-right {
  position:relative; background:var(--ink); overflow:hidden;
  animation:fadeIn .9s .2s ease both;
}
.hero-dt-bg {
  position:absolute; inset:0; z-index:1;
  pointer-events: none;
}
.hero-grid-bg {
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(26,95,255,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(26,95,255,.09) 1px,transparent 1px);
  background-size:52px 52px;
  animation:gridDrift 22s linear infinite;
}
@keyframes gridDrift { from{background-position:0 0} to{background-position:52px 52px} }
.orb { position:absolute; border-radius:50%; filter:blur(72px); }
.orb1 { width:380px;height:380px;background:var(--blue);opacity:.2;top:-80px;right:-60px;animation:orbf 9s ease-in-out infinite; }
.orb2 { width:220px;height:220px;background:#4d82ff;opacity:.18;bottom:60px;left:-40px;animation:orbf 7s 2s ease-in-out infinite reverse; }
.orb3 { width:190px;height:190px;background:var(--blue-lt);opacity:.2;top:40%;left:15%;animation:orbf2 12s ease-in-out infinite; }
.orb4 { width:280px;height:280px;background:#1a5fff;opacity:.22;bottom:-20px;right:20px;animation:orbf2 10s 3s ease-in-out infinite reverse; }
@keyframes orbf { 0%,100%{transform:translate(0,0)} 50%{transform:translate(18px,-28px)} }
@keyframes orbf2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,40px) scale(1.15)} }

.scanner {
  position: absolute;
  top: -10%; left: -20%; width: 140%; height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(26,95,255,0.02) 50%, rgba(26,95,255,0.15) 51%, transparent 52%);
  animation: scan 8s linear infinite;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 2;
}
@keyframes scan { 0% { transform: translateY(-100%) rotate(15deg); } 100% { transform: translateY(100%) rotate(15deg); } }

.hero-panel {
  position:absolute; inset:0;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:44px; gap:14px; z-index:2;
}
.dash-card {
  background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.1);
  border-radius:14px; padding:26px; backdrop-filter:blur(10px);
}
.dc-label { font-size:10px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:14px; }
.dc-metric { font-family:'Unbounded',sans-serif; font-size:28px; font-weight:800; color:#fff; letter-spacing:-0.5px; line-height:1; }
.dc-sub { font-size:12px; color:rgba(255,255,255,.35); margin-top:6px; }
.dc-bars { margin-top:18px; display:flex; flex-direction:column; gap:10px; }
.bar-row {}
.bar-track { height:3px; background:rgba(255,255,255,.08); border-radius:2px; overflow:hidden; margin-bottom:5px; }
.bar-fill { height:100%; background:linear-gradient(90deg,var(--blue-lt),var(--blue)); border-radius:2px; animation:barIn 1.4s .6s ease both; transform-origin:left; }
@keyframes barIn { from{transform:scaleX(0)} to{transform:scaleX(1)} }
.bar-meta { display:flex; justify-content:space-between; font-size:11px; color:rgba(255,255,255,.38); }

.mini-row { display:flex; gap:12px; }
.mini-c {
  flex:1; background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.09);
  border-radius:12px; padding:18px 16px;
}
.mini-ico { font-size:20px; margin-bottom:10px; }
.mini-v { font-family:'Unbounded',sans-serif; font-size:16px; font-weight:800; color:#fff; letter-spacing:-.2px; }
.mini-l { font-size:10px; color:rgba(255,255,255,.35); margin-top:3px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ═══════════════════════════════════════
   CLIENT LOGO STRIP
═══════════════════════════════════════ */
.logo-strip {
  padding:28px 72px;
  border-bottom:1px solid var(--border);
  position:relative;
}
.logo-strip-label {
  font-size:15px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink); opacity:.3; text-align:center; margin-bottom:28px;
}
.logo-track-wrap { overflow:hidden; position:relative; }
.logo-track-wrap::before,.logo-track-wrap::after {
  content:''; position:absolute; top:0; bottom:0; z-index:2; width:90px; pointer-events:none;
}
.logo-track-wrap::before { left:0; background:linear-gradient(90deg,var(--warm-white),transparent); }
.logo-track-wrap::after  { right:0; background:linear-gradient(-90deg,var(--warm-white),transparent); }
.logo-scroll { 
  display:flex; gap:60px; align-items:center; width: 100%; 
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; 
  cursor: grab;
}
.logo-scroll:active { cursor: grabbing; }
.logo-scroll::-webkit-scrollbar { display: none; }

/* SWAPPABLE CLIENT LOGOS — replace .logo-item text or add <img> tags inside */
.logo-item {
  font-family:'Unbounded',sans-serif; font-size:14px; font-weight:700;
  color:var(--ink); letter-spacing:-.2px; flex-shrink:0; white-space:nowrap;
  /* To use image logos: add an <img> inside each .logo-item instead of text */
}
.logo-item img {
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ═══════════════════════════════════════
   DIGITAL TRANSFORMATION NARRATIVE
═══════════════════════════════════════ */
.dt-section {
  padding:120px 72px;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start;
  position: relative;
}
.dt-left {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.dt-right { 
  display:flex; flex-direction:column; 
  height: 60vh;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateZ(0);
  will-change: scroll-position;
  padding: 24px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  background: rgba(250, 249, 246, 0.4);
  box-shadow: 0 8px 32px rgba(8,8,16,0.02);
  scrollbar-width: thin;
  position: relative;
  gap: 20px;
}
.dt-right::-webkit-scrollbar { width: 8px; }
.dt-right::-webkit-scrollbar-track { background: transparent; }
.dt-right::-webkit-scrollbar-thumb { background-color: rgba(26,95,255,0.15); border-radius: 10px; }
.dt-right::-webkit-scrollbar-thumb:hover { background-color: rgba(26,95,255,0.3); }

.dt-pillar {
  background: var(--warm-white);
  display:flex; gap:20px; align-items:flex-start;
  padding:28px; border:1px solid var(--border); border-radius:var(--radius);
  transition:border-color .25s, background .25s;
}
.dt-pillar:last-child { margin-bottom: 0; }
.dt-pillar:hover { border-color:var(--blue); background:var(--blue-pale); }
.dt-pillar-icon {
  width:44px; height:44px; border-radius:10px; flex-shrink:0;
  background:var(--blue-pale); display:flex; align-items:center; justify-content:center; font-size:20px;
}
.dt-pillar h4 {
  font-family:'Unbounded',sans-serif; font-size:18px; font-weight:700;
  letter-spacing:-.2px; color:var(--ink); margin-bottom:8px;
}
.dt-pillar p { font-size:15px; font-weight:400; line-height:1.65; color:var(--ink); opacity:.75; }

/* ═══════════════════════════════════════
   DIFFERENTIATORS (dark)
═══════════════════════════════════════ */
.diff-section {
  padding:110px 72px; background:var(--ink); position:relative; overflow:hidden;
}
.diff-section::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(26,95,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(26,95,255,.045) 1px,transparent 1px);
  background-size:64px 64px;
}
.diff-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:64px; position:relative; z-index:1; }
.diff-track-wrap {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 10px 0;
  margin: 0 -72px; /* Pull out to container edges to ignore padding */
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.diff-track {
  display: flex;
  width: 100%;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.diff-track:active { cursor: grabbing; }
.diff-track::-webkit-scrollbar { display: none; }
.diff-group {
  display: flex;
  gap: 20px;
  padding-right: 20px; /* Gap between the two groups */
}
.diff-card {
  width: 420px;
  flex-shrink: 0;
  background:rgba(255,255,255,.032); border:1px solid rgba(255,255,255,.075);
  padding:40px 32px; transition:background .25s, transform .3s ease; cursor: pointer;
}
.diff-card:hover { background:rgba(255,255,255,.058); transform: scale(1.02); }


.diff-n { font-family:'Unbounded',sans-serif; font-size:12px; font-weight:700; color:var(--blue-lt); letter-spacing:.06em; margin-bottom:22px; }
.diff-t { font-family:'Unbounded',sans-serif; font-size:19px; font-weight:700; color:#fff; letter-spacing:-.2px; line-height:1.22; margin-bottom:14px; }
.diff-b { font-size:13px; font-weight:300; line-height:1.72; color:rgba(255,255,255,.42); }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-section { padding:110px 72px; }
.services-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:56px; }
.services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.svc-card {
  border:1px solid var(--border); border-radius:var(--radius); padding:40px;
  position:relative; overflow:hidden; transition:border-color .25s, transform .25s;
}
.svc-card:hover { border-color:var(--blue); transform:translateY(-2px); }
.svc-card.dark { background:var(--ink); border-color:transparent; }
.svc-card::after {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--blue),transparent);
  opacity:0; transition:opacity .25s;
}
.svc-card:hover::after { opacity:1; }
.svc-icon { width:46px;height:46px;border-radius:11px;display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:26px; }
.svc-icon.pale  { background:var(--blue-pale); }
.svc-icon.dark  { background:rgba(26,95,255,.22); }
.svc-t { font-family:'Unbounded',sans-serif;font-size:21px;font-weight:700;letter-spacing:-.25px;color:var(--ink);margin-bottom:13px; }
.svc-card.dark .svc-t { color:#fff; }
.svc-b { font-size:14px;font-weight:300;line-height:1.7;color:var(--ink);opacity:.52;margin-bottom:26px; }
.svc-card.dark .svc-b { color:rgba(255,255,255,.45);opacity:1; }
.tags { display:flex;flex-wrap:wrap;gap:8px; }
.tag { font-size:11px;font-weight:500;padding:5px 11px;border-radius:100px;border:1px solid var(--border);color:var(--ink);opacity:.62; }
.svc-card.dark .tag { border-color:rgba(255,255,255,.14);color:rgba(255,255,255,.55);opacity:1; }

/* ═══════════════════════════════════════
   WHAT WE'VE BUILT
═══════════════════════════════════════ */
.built-section { padding:110px 72px; background:var(--off-white); overflow:hidden; }
.built-track-wrap { margin-top:60px; overflow:hidden; position:relative; }
.built-track-wrap::before,.built-track-wrap::after {
  content:''; position:absolute; top:0; bottom:0; z-index:2; width:90px; pointer-events:none;
}
.built-track-wrap::before { left:0; background:linear-gradient(90deg,var(--off-white),transparent); }
.built-track-wrap::after  { right:0; background:linear-gradient(-90deg,var(--off-white),transparent); }

.built-grid { 
  display:flex; gap:18px; 
  width: 100%;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.built-grid:active { cursor: grabbing; }
.built-grid::-webkit-scrollbar { display: none; }

.built-card {
  background:var(--warm-white); border:1px solid var(--border);
  border-radius:var(--radius); padding:32px; transition:all .25s;
  display:flex; flex-direction:column; width: 380px; flex-shrink: 0;
}
.built-card:hover { border-color:var(--blue); box-shadow:0 8px 32px rgba(26,95,255,.08); }
.built-tag {
  display:inline-block; font-size:10px; font-weight:600; letter-spacing:.09em;
  text-transform:uppercase; padding:4px 10px; border-radius:100px;
  margin-bottom:20px; width:fit-content;
}
.built-tag.live { background:#e6f9ef; color:#0d7a3e; }
.built-tag.ai   { background:var(--blue-pale); color:var(--blue); }
.built-tag.saas { background:var(--gold-pale); color:#8a6010; }
.built-name { font-family:'Unbounded',sans-serif; font-size:17px; font-weight:700; letter-spacing:-.2px; color:var(--ink); margin-bottom:10px; }
.built-desc { font-size:13px; font-weight:300; line-height:1.68; color:var(--ink); opacity:.52; flex:1; }
.built-meta { margin-top:18px; padding-top:16px; border-top:1px solid var(--border); font-size:11px; font-weight:500; color:var(--steel); }

/* ═══════════════════════════════════════
   SECTORS (with banking use cases embedded)
═══════════════════════════════════════ */
.sectors-section { padding:110px 72px; }
.sectors-header { margin-bottom:60px; }
.sector-tabs { display:flex; gap:0; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; margin-bottom:48px; }
.sector-tab {
  flex:1; padding:16px 10px; text-align:center;
  font-size:13px; font-weight:500; color:var(--ink); opacity:.45;
  cursor:pointer; border-right:1px solid var(--border); transition:all .2s;
  background:transparent; border-top:none; border-bottom:none; border-left:none;
  font-family:'DM Sans',sans-serif;
}
.sector-tab:last-child { border-right:none; }
.sector-tab.active { background:var(--ink); color:#fff; opacity:1; }
.sector-tab:hover:not(.active) { background:var(--off-white); opacity:.8; }

.sector-panel { display:none; }
.sector-panel.active { display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:start; }

.sector-info {}
.sector-icon-lg { font-size:48px; margin-bottom:20px; }
.sector-name { font-family:'Unbounded',sans-serif; font-size:28px; font-weight:800; letter-spacing:-.5px; color:var(--ink); margin-bottom:16px; }
.sector-desc { font-size:15px; font-weight:300; line-height:1.72; color:var(--ink); opacity:.55; margin-bottom:28px; }
.sector-capabilities { list-style:none; display:flex; flex-direction:column; gap:10px; }
.sector-capabilities li {
  display:flex; gap:10px; align-items:flex-start;
  font-size:14px; font-weight:300; line-height:1.55; color:var(--ink); opacity:.65;
}
.sector-capabilities li::before { content:'→'; color:var(--blue); flex-shrink:0; font-size:13px; margin-top:1px; }

.sector-usecases { display:flex; flex-direction:column; gap:14px; }
.uc-card {
  border:1px solid var(--border); border-radius:11px; padding:24px 26px;
  transition:border-color .22s, background .22s;
}
.uc-card:hover { border-color:var(--blue); background:var(--blue-pale); }
.uc-id { font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--blue); margin-bottom:8px; }
.uc-title { font-family:'Unbounded',sans-serif; font-size:15px; font-weight:700; letter-spacing:-.15px; color:var(--ink); margin-bottom:6px; }
.uc-desc { font-size:13px; font-weight:300; line-height:1.6; color:var(--ink); opacity:.52; margin-bottom:12px; }
.uc-outcome { font-size:12px; font-weight:500; color:var(--blue); background:var(--blue-pale); display:inline-block; padding:4px 10px; border-radius:100px; }

/* ═══════════════════════════════════════
   CASE STUDIES (upgraded)
═══════════════════════════════════════ */
.cases-section { padding:110px 72px; background:var(--off-white); }
.cases-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:60px; }
.case-card {
  background:var(--warm-white); border:1px solid var(--border);
  border-radius:var(--radius); overflow:hidden; transition:all .25s;
  display:flex; flex-direction:column;
}
.case-card:hover { border-color:var(--blue); box-shadow:0 10px 40px rgba(26,95,255,.09); transform:translateY(-2px); }

/* SWAPPABLE: Replace the .case-visual background with your own images */
.case-visual {
  height:160px; position:relative; overflow:hidden;
  /* Default: gradient placeholder — replace with: background:url('your-image.jpg') center/cover */
}
.case-visual::after {
  content: attr(data-icon);
  position:absolute; bottom:-10px; right:-10px;
  font-size:100px; opacity:0.07; line-height:1;
  pointer-events:none; user-select:none;
  transform: rotate(-15deg);
  filter: grayscale(1) brightness(3);
}
.case-visual.cv1 { background:linear-gradient(135deg,rgba(13,31,68,0.8),rgba(26,95,255,0.8)), url('https://images.unsplash.com/photo-1599707254554-027aeb4deacd?auto=format&fit=crop&q=80&w=800') center/cover; }
.case-visual.cv2 { background:linear-gradient(135deg,rgba(13,43,31,0.8),rgba(13,122,62,0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=800') center/cover; }
.case-visual.cv3 { background:linear-gradient(135deg,rgba(43,26,0,0.8),rgba(201,168,76,0.8)), url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&q=80&w=800') center/cover; }
.case-visual.cv4 { background:linear-gradient(135deg,rgba(26,13,43,0.8),rgba(124,58,237,0.8)), url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?&auto=format&fit=crop&q=80&w=800') center/cover; }
.case-visual.cv5 { background:linear-gradient(135deg,rgba(26,26,26,0.8),rgba(74,74,74,0.8)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80&w=800') center/cover; }
.case-visual.cv6 { background:linear-gradient(135deg,rgba(13,34,51,0.8),rgba(26,143,255,0.8)), url('https://images.unsplash.com/photo-1501167786227-4cba60f6d58f?auto=format&fit=crop&q=80&w=800') center/cover; }
.case-visual-label {
  position:absolute; bottom:14px; left:16px;
  font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,.6);
}
.case-visual-metric {
  position:absolute; top:16px; right:16px;
  font-family:'Unbounded',sans-serif; font-size:20px; font-weight:800; color:#fff; letter-spacing:-0.5px;
}

/* ═══ CASE CARD HOVER ANIMATION ═══ */
.case-card { transition:all .3s cubic-bezier(.25,.46,.45,.94); }
.case-card:hover { border-color:var(--blue); box-shadow:0 10px 40px rgba(26,95,255,.09); transform:translateY(-4px) scale(1.01); }

/* ═══ FLOATING ANIMATION FOR STATS ═══ */
@keyframes floatStat {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
.hero-stats .stat-n { animation: floatStat 4s ease-in-out infinite; }
.hero-stats > div:nth-child(2) .stat-n { animation-delay: 0.8s; }
.hero-stats > div:nth-child(3) .stat-n { animation-delay: 1.6s; }

/* ═══ SHIMMER ON TRUST STRIP ═══ */
@keyframes shimmerTrust {
  0%,100% { opacity: 0.55; }
  50% { opacity: 0.9; }
}
.trust-item { animation: shimmerTrust 3s ease-in-out infinite; }
.trust-item:nth-child(3) { animation-delay: 0.5s; }
.trust-item:nth-child(5) { animation-delay: 1s; }
.trust-item:nth-child(7) { animation-delay: 1.5s; }

/* ═══ PULSING GLOW ON DIFF CARDS ═══ */
@keyframes borderGlow {
  0%,100% { border-color: rgba(255,255,255,.075); }
  50% { border-color: rgba(26,95,255,.25); }
}
.diff-card { animation: borderGlow 5s ease-in-out infinite; }
.diff-card:nth-child(2) { animation-delay: 0.8s; }
.diff-card:nth-child(3) { animation-delay: 1.6s; }
.diff-card:nth-child(4) { animation-delay: 2.4s; }
.diff-card:nth-child(5) { animation-delay: 3.2s; }
.diff-card:nth-child(6) { animation-delay: 4s; }

/* ═══ COUNTER NUMBER SHINE ═══ */
@keyframes numShine {
  0%,100% { color: var(--gold); }
  50% { color: #f0c97a; text-shadow: 0 0 20px rgba(201,168,76,.4); }
}
.vs-n { animation: numShine 4s ease-in-out infinite; }
.vs-card:nth-child(2) .vs-n { animation-delay: 1s; }
.vs-card:nth-child(3) .vs-n { animation-delay: 2s; }
.vs-card:nth-child(4) .vs-n { animation-delay: 3s; }

/* ═══ SERVICE CARD ICON BOUNCE ═══ */
@keyframes iconPop {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1) rotate(3deg); }
}
.svc-card:hover .svc-icon { animation: iconPop .4s ease; }

/* ═══ METHOD STEP INDICATOR ═══ */
@keyframes stepPulse {
  0%,100% { color: var(--blue); }
  50% { color: var(--blue-lt); text-shadow: 0 0 12px rgba(26,95,255,.4); }
}
.ms-n { animation: stepPulse 3s ease-in-out infinite; }

/* ═══ SOCIAL ICONS ═══ */
.footer-social { display:flex; gap:12px; margin-top:20px; }
.social-icon {
  width:36px; height:36px; border-radius:8px;
  background:rgba(8,8,16,.07); border:1px solid var(--border-md);
  display:flex; align-items:center; justify-content:center;
  color:var(--ink); opacity:.85; transition:all .2s; text-decoration:none;
  font-size:16px;
}
.social-icon:hover { opacity:1; background:var(--blue); color:#fff; border-color:var(--blue); transform:translateY(-2px); }
.footer-phone { font-size:13px; font-weight:400; color:var(--ink); opacity:.85; margin-top:10px; }
.footer-phone a { color:inherit; transition:opacity .2s; }
.footer-phone a:hover { opacity:1; color:var(--blue); }

/* ═══ CONTACT SECTION ═══ */
.contact-section {
  padding:110px 72px; background:var(--off-white);
}
.contact-grid {
  display:grid; grid-template-columns:repeat(4, 1fr); gap:24px; margin-top:56px;
}
.contact-card {
  background:var(--warm-white); border:1px solid var(--border);
  border-radius:var(--radius); padding:36px 32px;
  position:relative; overflow:hidden; transition:all .25s;
}
.contact-card:hover { border-color:var(--blue); transform:translateY(-2px); box-shadow:0 8px 32px rgba(26,95,255,.08); }
.contact-card.coming-soon { opacity:.7; cursor:default; }
.contact-card.coming-soon:hover { transform:none; box-shadow:none; border-color:var(--border); }
.contact-card-flag { font-size:36px; margin-bottom:16px; }
.contact-card-country { font-family:'Unbounded',sans-serif; font-size:18px; font-weight:800; letter-spacing:-.3px; color:var(--ink); margin-bottom:4px; }
.contact-card-status { font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--blue); margin-bottom:20px; }
.contact-card-status.soon { color:var(--gold); }
.contact-card-divider { height:1px; background:var(--border); margin-bottom:20px; }
.contact-info-row { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; font-size:13px; font-weight:300; line-height:1.55; color:var(--ink); opacity:.65; }
.contact-info-icon { font-size:14px; flex-shrink:0; margin-top:1px; }
.coming-soon-badge {
  position:absolute; top:20px; right:20px;
  font-size:9px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  background:var(--gold-pale); color:#8a6010; padding:5px 10px; border-radius:100px;
  border:1px solid rgba(201,168,76,.3);
}
.contact-social-row { display:flex; gap:10px; margin-top:16px; padding-top:16px; border-top:1px solid var(--border); }
.contact-social-link {
  width:32px; height:32px; border-radius:7px;
  background:var(--blue-pale); border:1px solid rgba(26,95,255,.15);
  display:flex; align-items:center; justify-content:center;
  color:var(--blue); font-size:14px; transition:all .2s; text-decoration:none;
}
.contact-social-link:hover { background:var(--blue); color:#fff; }

/* ═══ SECTION HEADER BOLD CONTENT ═══ */
.cases-section .section-sub strong,
.dt-section .section-sub strong { color:var(--ink); opacity:1; }

.case-body { padding:26px; flex:1; display:flex; flex-direction:column; }
.case-sector { font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--blue); margin-bottom:10px; }
.case-title { font-family:'Unbounded',sans-serif; font-size:16px; font-weight:700; letter-spacing:-.15px; color:var(--ink); margin-bottom:10px; line-height:1.3; }
.case-problem { font-size:13px; font-weight:300; line-height:1.65; color:var(--ink); opacity:.52; flex:1; }
.case-footer { margin-top:18px; padding-top:14px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; }
.case-tech { font-size:11px; font-weight:500; color:var(--steel); }
.case-outcome-chip { font-size:11px; font-weight:600; color:#0d7a3e; background:#e6f9ef; padding:4px 10px; border-radius:100px; }


/* ═══════════════════════════════════════
   VISION 2030
═══════════════════════════════════════ */
.vision-section {
  padding:110px 72px; background:var(--ink);
  position:relative; overflow:hidden;
}
.vision-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,.12), transparent 70%);
}
.vision-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative; z-index:1; }
.vision-left {}
.vision-missions { display:flex; flex-direction:column; gap:14px; margin-top:48px; }
.vm-card {
  display:flex; align-items:center; gap:18px;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:11px; padding:20px 22px; transition:background .22s;
}
.vm-card:hover { background:rgba(201,168,76,.08); border-color:rgba(201,168,76,.25); }
.vm-flag { font-size:24px; flex-shrink:0; }
.vm-name { font-family:'Unbounded',sans-serif; font-size:15px; font-weight:700; color:#fff; margin-bottom:3px; }
.vm-desc { font-size:12px; font-weight:300; color:rgba(255,255,255,.38); }

.vision-right {}
.vision-stats { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:40px; }
.vs-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius); padding:28px 24px;
}
.vs-n { font-family:'Unbounded',sans-serif; font-size:26px; font-weight:800; color:var(--gold); letter-spacing:-0.5px; line-height:1; margin-bottom:8px; }
.vs-l { font-size:12px; font-weight:300; color:rgba(255,255,255,.38); line-height:1.5; }
.vision-copy { font-size:16px; font-weight:300; line-height:1.75; color:rgba(255,255,255,.5); margin-top:28px; }

/* ═══════════════════════════════════════
   METHODOLOGY
═══════════════════════════════════════ */
.method-section { padding:110px 72px; display:grid; grid-template-columns:1fr 1.2fr; gap:80px; align-items:start; position: relative; }
.method-left { position: relative; display: flex; flex-direction: column; justify-content: flex-start; }
.method-steps { 
  display:flex; flex-direction:column;
  height: 60vh;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateZ(0);
  will-change: scroll-position;
  padding: 24px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  background: rgba(250, 249, 246, 0.4);
  box-shadow: 0 8px 32px rgba(8,8,16,0.02);
  scrollbar-width: thin;
  position: relative;
  gap: 20px;
}
.method-steps::-webkit-scrollbar { width: 8px; }
.method-steps::-webkit-scrollbar-track { background: transparent; }
.method-steps::-webkit-scrollbar-thumb { background-color: rgba(26,95,255,0.15); border-radius: 10px; }
.method-steps::-webkit-scrollbar-thumb:hover { background-color: rgba(26,95,255,0.3); }

.method-step {
  background: #fff; border: 1px solid var(--border-md); border-radius: var(--radius);
  display:grid; grid-template-columns:72px 1fr auto;
  gap:28px; align-items:center;
  padding:32px 40px;
  box-shadow: 0 4px 20px rgba(8,8,16,0.03);
  transition:all .3s ease;
}
.method-step:last-child { margin-bottom: 0; }
.method-step:hover { background:#fff; transform:translateY(-2px); box-shadow: 0 8px 30px rgba(26,95,255,0.08); border-color:var(--blue-lt); }
.ms-n { font-family:'Unbounded',sans-serif; font-size:12px; font-weight:700; color:var(--blue); letter-spacing:.06em; }
.ms-t { font-family:'Unbounded',sans-serif; font-size:17px; font-weight:700; letter-spacing:-.15px; color:var(--ink); margin-bottom:5px; }
.ms-b { font-size:13px; font-weight:300; line-height:1.62; color:var(--ink); opacity:.48; max-width:500px; }
.ms-out { font-size:11px; font-weight:600; color:var(--blue); background:var(--blue-pale); padding:7px 14px; border-radius:100px; white-space:nowrap; }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta-section {
  padding:120px 72px; background:var(--ink); text-align:center;
  position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 50% 70% at 50% 50%,rgba(26,95,255,.18),transparent 70%);
}
.cta-section .section-h { margin-bottom:22px; position:relative; z-index:1; }
.cta-section .section-sub { margin:0 auto 48px; position:relative; z-index:1; }
.cta-actions { display:flex; justify-content:center; gap:14px; position:relative; z-index:1; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { padding:60px 72px 36px; border-top:1px solid var(--border); }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; margin-bottom:56px; }
.footer-brand { font-family:'Unbounded',sans-serif; font-size:19px; font-weight:800; letter-spacing:-.3px; color:var(--ink); margin-bottom:14px; }
.footer-brand span { color:var(--blue); }
.footer-desc { font-size:14px; font-weight:400; line-height:1.72; color:var(--ink); opacity:.85; max-width:240px; }
.footer-col-h { font-size:12px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color:var(--ink); opacity:.9; margin-bottom:18px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-links a { font-size:14px; font-weight:400; color:var(--ink); opacity:.85; transition:opacity .2s; }
.footer-links a:hover { opacity:1; }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:28px; border-top:1px solid var(--border);
  font-size:13px; font-weight:400; color:var(--ink); opacity:.7;
}
.footer-offices { display:flex; gap:18px; }
.fo { display:flex; align-items:center; gap:6px; font-size:12px; }
.fo-dot { width:5px; height:5px; background:var(--blue); border-radius:50%; opacity:1; }

/* ═══════════════════════════════════════
   CYBERSECURITY SECTION
═══════════════════════════════════════ */
.cyber-section {
  padding:110px 72px;
  background:var(--ink);
  position:relative; overflow:hidden;
}
.cyber-section::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(26,95,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(26,95,255,.04) 1px,transparent 1px);
  background-size:60px 60px;
}
.cyber-section::after {
  content:''; position:absolute;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(26,95,255,.12),transparent 70%);
  top:-100px; right:-100px; pointer-events:none;
}
.cyber-header {
  margin-bottom:64px; position:relative; z-index:1;
}
.cyber-header .eyebrow { color:var(--blue-lt); }
.cyber-header .section-h { color:#fff; }
.cyber-header .section-sub { color:rgba(255,255,255,.45); opacity:1; }

.cyber-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:6px; position:relative; z-index:1;
}
.cyber-card {
  display:flex; flex-direction:column; gap:0;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  padding:36px 32px;
  transition:background .25s, border-color .25s;
  cursor:pointer;
}
.cyber-card:hover {
  background:rgba(26,95,255,.08);
  border-color:rgba(26,95,255,.35);
  transform: translateY(-5px) scale(1.02);
  transition: transform .4s ease;
  box-shadow: 0 12px 40px rgba(26,95,255,.15);
}
.cyber-icon {
  font-size:28px; margin-bottom:20px;
  width:52px; height:52px;
  background:rgba(26,95,255,.15);
  border:1px solid rgba(26,95,255,.25);
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.cyber-card-body { flex:1; display:flex; flex-direction:column; gap:12px; }
.cyber-title {
  font-family:'Unbounded',sans-serif; font-size:17px; font-weight:700;
  letter-spacing:-.2px; color:#fff; line-height:1.25;
}
.cyber-desc {
  font-size:13px; font-weight:300; line-height:1.72;
  color:rgba(255,255,255,.42); flex:1;
}
.cyber-tag {
  border-color:rgba(26,95,255,.3) !important;
  color:var(--blue-lt) !important;
  opacity:1 !important;
  background:rgba(26,95,255,.1);
}

/* ═══════════════════════════════════════
   SECTION SPACING HELPERS
═══════════════════════════════════════ */
.pad-top { padding-top:24px; }
.gap-top { margin-top:24px; }

/* ═══════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════ */
@media (max-width: 1150px) {
  nav { padding: 0 32px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-right { min-height: 60vh; width: 100%; border-radius: var(--radius); margin-top: 40px; }
  .dt-section, .method-section, .vision-grid { grid-template-columns: 1fr; }
  
  .dt-section { height: auto; overflow: visible; }
  .dt-right { height: auto; overflow: visible; padding-right: 24px; }
  .dt-left { height: auto; justify-content: flex-start; margin-bottom: 40px; position: relative; top: 0; }
  .dt-pillar { position: static; margin-bottom: 20px; }
  
  .method-section { height: auto; overflow: visible; }
  .method-steps { height: auto; overflow: visible; padding-right: 24px; }
  .method-left { height: auto; justify-content: flex-start; margin-bottom: 40px; position: relative; top: 0; }
  .method-step { position: static; margin-bottom: 20px; }
  .cases-grid, .contact-grid, .cyber-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-card { width: 340px; } /* Slightly narrower cards on tablet */
  .sector-panel.active { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .hero-left, .logo-strip, .dt-section, .diff-section, .services-section, .built-section, .sectors-section, .cases-section, .vision-section, .method-section, .cyber-section, .contact-section, .cta-section, footer { padding: 60px 20px; }
  .cases-grid, .contact-grid, .cyber-grid, .services-grid { grid-template-columns: 1fr; }
  .diff-card { width: 280px; } /* Even narrower for phones */
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 16px; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .trust-strip { gap: 10px; }
  .sector-tabs { flex-direction: column; }
  .sector-tab { border-right: none; border-bottom: 1px solid var(--border); }
  .sector-tab:last-child { border-bottom: none; }
  .built-card { width: 300px; }
  
  /* Fixes for overflowing flex/grid layouts on mobile */
  .dt-pillar { flex-direction: column; padding: 20px; gap: 12px; }
  .method-step { grid-template-columns: 1fr; padding: 20px; gap: 16px; }
  .ms-out { justify-self: start; }
  .vision-stats { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 24px; text-align: center; align-items: center; }
  .footer-offices { flex-direction: column; gap: 12px; align-items: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .case-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
  .scanner { display: none; } /* Disable heavy scanner on mobile to prevent overflow/performance issues */
}