/* ═══════════════════════════════════════════════════
   TGT DESIGN TOKENS
════════════════════════════════════════════════ */
:root {
  --c-bg:        #071426;
  --c-bg2:       #081b33;
  --c-bg3:       #0b2748;
  --c-surface:   #0d2542;
  --c-surface2:  #12345c;
  --c-border:    rgba(255,255,255,0.07);
  --c-border2:   rgba(255,255,255,0.12);
  --c-blue:      #0b7fe8;
  --c-blue-l:    #1697ff;
  --c-blue-xl:   #58b8ff;
  --c-teal:      #22d3ee;
  --c-teal-l:    #67e8f9;
  --c-green:     #10b981;
  --c-text:      #e2e8f0;
  --c-muted:     #64748b;
  --c-muted2:    #94a3b8;
  --c-white:     #ffffff;
  --f-display:   'Syne', sans-serif;
  --f-body:      'Inter', sans-serif;
  --f-mono:      'JetBrains Mono', monospace;
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full:9999px;
  --shadow-glow: 0 0 80px rgba(37,99,235,0.18);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  --t: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════════ */
h1,h2,h3,h4,h5 { font-family: var(--f-display); line-height: 1.1; color: var(--c-white); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3.2rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--c-muted2); line-height: 1.75; }

/* ═══════════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════ */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 840px; margin: 0 auto; padding: 0 24px; }
.wrap-footer { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-alt { background: var(--c-bg2); }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.center { text-align: center; }
#page-content { padding-top: 72px; }

/* ─── WORDPRESS ADMIN BAR FIX ─────────────────── */
.admin-bar #header { top: 32px; }
.admin-bar #page-content { padding-top: 72px; }
@media screen and (max-width: 782px) {
  .admin-bar #header { top: 46px; }
}



/* ═══════════════════════════════════════════════════
   EYEBROW / CHIPS
════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-teal);
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.2);
  padding: 5px 14px; border-radius: var(--r-full);
  margin-bottom: 20px;
}
.eyebrow::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--c-teal); animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

/* ═══════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600; font-family: var(--f-body);
  padding: 13px 28px; border-radius: var(--r-full);
  transition: var(--t); white-space: nowrap; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--c-blue); color: #fff; box-shadow: 0 4px 20px rgba(37,99,235,.35); }
.btn-primary:hover { background: var(--c-blue-l); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,.5); }
.btn-teal { background: var(--c-teal); color: var(--c-bg); box-shadow: 0 4px 20px rgba(6,182,212,.3); }
.btn-teal:hover { background: var(--c-teal-l); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--c-text); border: 1.5px solid var(--c-border2); }
.btn-outline:hover { border-color: var(--c-blue-l); color: var(--c-blue-xl); transform: translateY(-2px); }
.btn-ghost { background: rgba(37,99,235,.1); color: var(--c-blue-xl); border: 1px solid rgba(37,99,235,.2); }
.btn-ghost:hover { background: rgba(37,99,235,.2); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: .82rem; }
.btn-arrow { transition: transform var(--t); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════ */
#header {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  transition: var(--t);
}
#header.scrolled {
  background: rgba(5,8,15,.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.nav-inner {
  max-width:1200px; margin:0 auto; padding:0 24px;
  height:72px; display:flex; align-items:center; justify-content:space-between;
  position: relative;
}
.logo { display:flex; align-items:center; gap:10px; }
.logo-mark {
  width:40px; height:40px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-teal));
  border-radius:10px; display:flex; align-items:center; justify-content:center;
  font-family:var(--f-display); font-weight:800; font-size:.95rem; color:#fff;
  flex-shrink:0;
}
.logo-text { line-height:1.15; }
.logo-name { font-family:var(--f-display); font-size:.95rem; font-weight:700; color:var(--c-white); letter-spacing:-.01em; }
.logo-sub  { font-size:.65rem; color:var(--c-muted); font-family:var(--f-mono); letter-spacing:.05em; }
.nav-links { display:flex; align-items:center; gap:2px; }
.nav-link {
  padding:8px 14px; font-size:.875rem; font-weight:500;
  color:var(--c-muted2); border-radius:var(--r-sm);
  transition:var(--t); position:relative; cursor: pointer;
}
.nav-link:hover, .nav-item:hover .nav-link { color:var(--c-white); background:rgba(255,255,255,.05); }
.nav-link.active { color:var(--c-white); }
.nav-link.active::after {
  content:''; position:absolute; bottom:2px; left:50%; transform:translateX(-50%);
  width:4px; height:4px; background:var(--c-teal); border-radius:50%;
}
.nav-cta { display:flex; align-items:center; gap:10px; }
.nav-chevron { font-size:.65rem; transition: transform var(--t); }
.nav-item.has-mega-menu:hover .nav-chevron { transform: rotate(180deg); }

/* ═══════════════════════════════════════════════════
   MEGA MENU
════════════════════════════════════════════════ */
.nav-item { position: static; }
.nav-item.has-mega-menu::after {
  content: '';
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  height: 8px;
  display: none;
  pointer-events: none;
  z-index: 9998;
}
.nav-item.has-mega-menu:hover::after,
.nav-item.has-mega-menu.open::after {
  display: block;
}
.admin-bar .nav-item.has-mega-menu::after {
  top: 88px;
}
@media screen and (max-width: 782px) {
  .admin-bar .nav-item.has-mega-menu::after {
    top: 102px;
  }
}
.mega-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 9999;
  transform: translateY(0);
  padding: 8px 24px 0;
  box-sizing: border-box;
}
.admin-bar .mega-menu {
  top: 96px;
}
@media screen and (max-width: 782px) {
  .admin-bar .mega-menu {
    top: 110px;
  }
}
.nav-item.has-mega-menu:hover .mega-menu,
.nav-item.has-mega-menu:focus-within .mega-menu,
.nav-item.has-mega-menu.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.mega-inner {
  background: #0f1829;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
}
.mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #141e30;
}
.mega-header-text h3 { font-size: .95rem; color: #fff; margin: 0; font-family: var(--f-display); }
.mega-header-text p  { font-size: .75rem; color: #64748b; margin: 2px 0 0; }
.mega-view-all { font-size: .8rem; font-weight: 600; color: var(--c-teal); white-space: nowrap; transition: var(--t); }
.mega-view-all:hover { color: var(--c-teal-l); }

/* Services body: one single row of columns */
.mega-body {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scrollbar-width: none;
}
.mega-body::-webkit-scrollbar { display: none; }
.mega-col {
  flex: 0 0 auto;
  min-width: 150px;
  max-width: 190px;
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.mega-col:last-child { border-right: none; }
.mega-col-title {
  font-family: var(--f-mono);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-teal);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
  white-space: nowrap;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  transition: var(--t);
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 2px;
}
.mega-item:last-child { margin-bottom: 0; }
.mega-item:hover { background: rgba(37,99,235,.15); }
.mega-item-icon {
  width: 26px; height: 26px; min-width: 26px;
  background: rgba(37,99,235,.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}
.mega-item-name {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.3;
}
.mega-item-desc { display: none; }
.mega-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(37,99,235,.05);
}
.mega-footer-note { font-size: .75rem; color: #64748b; }

/* Industries mega menu */
.mega-menu-industries { }
.mega-menu-industries .mega-inner { max-width: 720px; }
.mega-body-industries {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.mega-ind-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  transition: var(--t);
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.mega-ind-item:nth-child(3n) { border-right: none; }
.mega-ind-item:hover { background: rgba(6,182,212,.08); }
.mega-ind-icon {
  width: 30px; height: 30px; min-width: 30px;
  background: rgba(6,182,212,.1);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.mega-item-text .mega-item-name { font-size: .82rem; font-weight: 600; color: #e2e8f0; display: block; }
.mega-item-text .mega-item-desc { display: none; }
.mega-ind-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: transparent;
}
.mega-ind-feature-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: .9rem;
  font-weight: 700;
}
.mega-ind-feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.mega-ind-feature-links a {
  padding: 7px 11px;
  border: 1px solid rgba(45,212,191,.22);
  border-radius: 999px;
  background: rgba(6,182,212,.12);
  color: #dffcff;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.2;
  transition: var(--t);
}
.mega-ind-feature-links a:hover {
  border-color: rgba(45,212,191,.55);
  background: rgba(45,212,191,.24);
  color: #ffffff;
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════
   MOBILE NAV
════════════════════════════════════════════════ */
.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; padding:8px;
}
.hamburger span { display:block; width:22px; height:2px; background:var(--c-text); transition:var(--t); border-radius:2px; }
.mobile-nav {
  position:fixed; top:72px; left:0; right:0; z-index:999;
  background:rgba(5,8,15,.97); backdrop-filter:blur(20px);
  border-bottom:1px solid var(--c-border);
  padding:20px 24px; display:flex; flex-direction:column; gap:4px;
  transform:translateY(-20px); opacity:0; pointer-events:none; transition:var(--t);
  max-height: calc(100vh - 72px); overflow-y: auto;
}
.mobile-nav.open { transform:translateY(0); opacity:1; pointer-events:all; }
.mobile-nav .nav-link { font-size:1rem; padding:12px 16px; }
.mobile-nav-cta { margin-top:16px; display:flex; gap:12px; }
.mobile-group-title {
  padding: 12px 16px; font-size: 1rem; font-weight: 600;
  color: var(--c-muted2); cursor: pointer; border-radius: var(--r-sm);
  transition: var(--t);
}
.mobile-group-title:hover { background: rgba(255,255,255,.05); color: var(--c-white); }
.mobile-group-items { display: none; padding-left: 16px; }
.mobile-group.open .mobile-group-items { display: flex; flex-direction: column; gap: 2px; }
.mobile-sub-link {
  padding-left: 34px !important;
  font-size: .82rem !important;
  color: var(--c-muted2) !important;
}

/* ═══════════════════════════════════════════════════
   PAGE HERO
════════════════════════════════════════════════ */
.page-hero {
  min-height: 380px; display:flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 24px 60px;
  background: var(--c-bg3);
  border-bottom: 1px solid var(--c-border);
}
.page-hero-grid {
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(37,99,235,.04) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(37,99,235,.04) 1px,transparent 1px);
  background-size:56px 56px;
}
.page-hero-glow {
  position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(37,99,235,.12), transparent);
}
.page-hero > .wrap { width: 100%; }
.page-hero-icon {
  width: 80px; height: 80px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; flex-shrink: 0;
}
.ind-emoji-hero { font-size: 3rem; }

/* ═══════════════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════════════ */
.breadcrumb {
  font-size: .8rem; color: var(--c-muted); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-muted); transition: var(--t); }
.breadcrumb a:hover { color: var(--c-white); }

/* ═══════════════════════════════════════════════════
   HERO (HOMEPAGE)
════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 32px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 20px 24px 40px;
}
body:not(.admin-bar) .hero {
  min-height: 100vh;
  padding-top: 20px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--c-bg);
  background-image:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(37,99,235,.13) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(6,182,212,.07) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 500;
  color: var(--c-blue-xl);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-teal));
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem;
}
/* Title */
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--c-white);
  margin-bottom: 16px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-blue-xl), var(--c-teal-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Description */
.hero-desc {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--c-muted2);
  margin-bottom: 24px;
  max-width: 480px;
}
/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
/* Stats */
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.hero-stats .stat-val {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-stats .stat-val span { color: var(--c-teal); }
.hero-stats .stat-lbl { font-size: .72rem; color: var(--c-muted); }

/* RIGHT SIDE — Card */
.hero-card-wrap {
  position: relative;
}
.hero-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: 0 8px 48px rgba(0,0,0,.5), 0 0 60px rgba(37,99,235,.08);
  animation: float 7s ease-in-out infinite;
  max-width: 400px;
  width: 100%;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.hc-title { font-family: var(--f-display); font-size: .88rem; font-weight: 700; color: var(--c-white); }
.hc-badge {
  padding: 3px 10px;
  font-size: .65rem;
  font-weight: 700;
  background: rgba(6,182,212,.12);
  border: 1px solid rgba(6,182,212,.25);
  border-radius: var(--r-full);
  color: var(--c-teal);
}
.tech-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  margin-bottom: 6px;
  transition: var(--t);
}
.tech-row:last-child { margin-bottom: 0; }
.tech-row:hover { background: rgba(37,99,235,.08); border-color: rgba(37,99,235,.2); }
.tech-icon {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(37,99,235,.3), rgba(6,182,212,.2));
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.tech-name { font-size: .82rem; font-weight: 600; color: var(--c-white); }
.tech-sub  { font-size: .7rem; color: var(--c-muted); }
.tech-bar  { margin-left: auto; display: flex; gap: 3px; align-items: flex-end; }
.tech-bar span { width: 3px; background: var(--c-blue); border-radius: 2px; animation: barUp .8s ease forwards; opacity: 0; }
.tech-bar span:nth-child(1){ height: 8px;  animation-delay: .2s; }
.tech-bar span:nth-child(2){ height: 14px; animation-delay: .35s; }
.tech-bar span:nth-child(3){ height: 20px; animation-delay: .5s; }
@keyframes barUp { to { opacity: .9; } }

/* Floating chips */
.hero-chip {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  padding: 7px 13px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  white-space: nowrap;
  color: var(--c-white);
  z-index: 2;
}
.hero-chip-1 { top: -18px; right: -12px; animation: floatA 4s ease-in-out infinite; }
.hero-chip-2 { bottom: -14px; left: -12px; animation: floatB 5s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 340px; gap: 32px; }
  .hero-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card-wrap { display: none; }
  .hero-title { font-size: clamp(2rem, 6vw, 2.8rem); }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat-val { font-size: 1.5rem; }
}


/* Ticker */
.ticker { background:var(--c-bg2); border-top:1px solid var(--c-border); border-bottom:1px solid var(--c-border); padding:14px 0; overflow:hidden; }
.ticker-track { display:flex; width:max-content; animation:ticker-scroll 28s linear infinite; }
.ticker-track:hover { animation-play-state:paused; }
.ticker-item { display:flex; align-items:center; gap:14px; padding:0 36px; font-size:.82rem; font-weight:600; color:var(--c-muted); letter-spacing:.04em; }
.ticker-dot { width:5px; height:5px; border-radius:50%; background:var(--c-teal); flex-shrink:0; }
@keyframes ticker-scroll { from{transform:translateX(0)}to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════
   SERVICES CARDS
════════════════════════════════════════════════ */
.svc-card {
  background:var(--c-surface); border:1px solid var(--c-border);
  border-radius:var(--r-lg); padding:32px; transition:var(--t);
  position:relative; overflow:hidden; cursor:pointer; display:block;
}
.svc-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--c-blue),var(--c-teal));
  transform:scaleX(0); transform-origin:left; transition:var(--t);
}
.svc-card:hover { border-color:rgba(37,99,235,.35); transform:translateY(-6px); box-shadow:var(--shadow-card); }
.svc-card:hover::before { transform:scaleX(1); }
.svc-icon { width:52px; height:52px; border-radius:var(--r-md); background:rgba(37,99,235,.12); display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:22px; transition:var(--t); }
.svc-card:hover .svc-icon { background:rgba(37,99,235,.22); transform:scale(1.05); }
.svc-title { font-size:1.1rem; margin-bottom:10px; }
.svc-desc  { font-size:.875rem; line-height:1.75; margin-bottom:20px; }
.svc-tags  { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:20px; }
.svc-tag   { font-size:.7rem; font-weight:600; padding:3px 10px; background:rgba(37,99,235,.1); border:1px solid rgba(37,99,235,.18); border-radius:var(--r-full); color:var(--c-blue-xl); }
.svc-link  { display:flex; align-items:center; gap:6px; font-size:.85rem; font-weight:600; color:var(--c-teal); transition:var(--t); }
.svc-card:hover .svc-link { gap:10px; }

/* Service detail rows */
.svc-detail {
  background:var(--c-surface); border:1px solid var(--c-border);
  border-radius:var(--r-lg); padding:36px; display:flex; gap:24px;
  transition:var(--t); align-items:flex-start;
}
.svc-detail:hover { border-color:rgba(37,99,235,.3); transform:translateY(-3px); box-shadow:var(--shadow-card); }
.svc-detail-icon { width:56px; height:56px; min-width:56px; border-radius:var(--r-md); background:rgba(37,99,235,.12); display:flex; align-items:center; justify-content:center; font-size:1.5rem; }
.svc-detail-title { font-size:1.15rem; margin-bottom:10px; }
.svc-detail-desc  { font-size:.875rem; line-height:1.75; margin-bottom:16px; }
.svc-detail-tags  { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px; }
.svc-cta { font-size:.82rem; font-weight:600; color:var(--c-teal); display:inline-flex; align-items:center; gap:6px; transition: var(--t); }
.svc-cta:hover { gap: 10px; }

/* Service key points */
.svc-key-points { background:var(--c-surface); border:1px solid var(--c-border); border-radius:var(--r-lg); padding:32px; }
.svc-key-title { font-size:.75rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--c-teal); margin-bottom:20px; }
.svc-key-item { display:flex; gap:12px; align-items:flex-start; padding:10px 0; border-bottom:1px solid var(--c-border); }
.svc-key-item:last-child { border-bottom:none; }
.svc-key-check { color:var(--c-green); font-weight:700; flex-shrink:0; }

/* Service content */
.service-content, .industry-content { color: var(--c-muted2); line-height: 1.85; }
.service-content p, .industry-content p { margin-bottom: 16px; }
.service-content h3, .industry-content h3 { font-size: 1.1rem; margin: 24px 0 10px; }

/* ═══════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════ */
.feat-item { display:flex; gap:18px; padding:24px; background:var(--c-surface); border:1px solid var(--c-border); border-radius:var(--r-md); transition:var(--t); }
.feat-item:hover { border-color:rgba(6,182,212,.2); background:rgba(6,182,212,.03); }
.feat-icon { width:46px; height:46px; min-width:46px; border-radius:var(--r-sm); background:rgba(6,182,212,.1); display:flex; align-items:center; justify-content:center; font-size:1.2rem; }
.feat-title { font-size:.95rem; margin-bottom:6px; }
.feat-desc  { font-size:.83rem; line-height:1.7; }

/* ═══════════════════════════════════════════════════
   INDUSTRIES
════════════════════════════════════════════════ */
.ind-card {
  background:var(--c-surface); border:1px solid var(--c-border);
  border-radius:var(--r-lg); padding:32px 24px; text-align:center;
  transition:var(--t); position:relative; overflow:hidden; display:block;
}
.ind-card:hover { border-color:rgba(6,182,212,.3); transform:translateY(-6px); box-shadow:var(--shadow-card); }
.ind-emoji { font-size:2.2rem; margin-bottom:14px; }
.ind-name  { font-family:var(--f-display); font-size:1rem; font-weight:700; color:var(--c-white); margin-bottom:8px; }
.ind-desc  { font-size:.8rem; line-height:1.65; }
.ind-quick-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

/* Industry detail rows */
.ind-detail-row { display:grid; grid-template-columns:1fr 1fr; gap:72px; padding:72px 0; border-bottom:1px solid var(--c-border); align-items:center; }
.ind-detail-row:last-child { border-bottom:none; padding-bottom:0; }
.ind-detail-row:nth-child(even) .ind-detail-text { order:2; }
.ind-detail-row:nth-child(even) .ind-detail-vis  { order:1; }
.ind-emoji-lg { font-size:3.5rem; margin-bottom:20px; }
.ind-detail-title { margin-bottom:16px; font-size:clamp(1.6rem,2.5vw,2.2rem); }
.ind-detail-desc  { font-size:.95rem; line-height:1.85; margin-bottom:28px; }
.ind-solutions { background:var(--c-surface); border:1px solid var(--c-border); border-radius:var(--r-lg); padding:28px; }
.ind-sol-title { font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--c-teal); margin-bottom:16px; }
.ind-sol-list  { display:flex; flex-direction:column; gap:10px; }
.ind-sol-item  { display:flex; gap:10px; align-items:flex-start; font-size:.875rem; color:var(--c-muted2); }
.ind-sol-item::before { content:'▸'; color:var(--c-blue-xl); flex-shrink:0; margin-top:2px; }

/* ═══════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════ */
.industry-overview-grid { align-items:center; }
.industry-overview-card { align-self:center; }
.industry-overview-grid .ind-solutions {
  align-self:center;
  background:linear-gradient(145deg,rgba(18,48,82,.96),rgba(9,32,57,.96));
  border-color:rgba(92,182,255,.22);
  box-shadow:0 22px 60px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04);
}
.industry-overview-grid .ind-sol-list { gap:12px; }
.industry-overview-grid .ind-sol-item {
  font-size:.9rem;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.industry-overview-grid .ind-sol-item:last-child { padding-bottom:0; border-bottom:0; }

.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; position:relative; }
.process-line { position:absolute; top:28px; left:10%; right:10%; height:2px; background:linear-gradient(90deg,var(--c-blue),var(--c-teal)); opacity:.3; z-index:0; }
.process-step { text-align:center; position:relative; z-index:1; }
.process-num { width:56px; height:56px; border-radius:50%; background:linear-gradient(135deg,var(--c-blue),var(--c-teal)); display:flex; align-items:center; justify-content:center; font-family:var(--f-mono); font-size:.85rem; font-weight:700; color:#fff; margin:0 auto 18px; }
.process-step-title { font-size:1rem; font-weight:700; color:var(--c-white); margin-bottom:8px; }
.process-step-desc { font-size:.83rem; line-height:1.7; }

.service-process-flow {
  row-gap: 54px;
}
.service-process-flow .process-line {
  display: none;
}
.service-process-flow::before,
.service-process-flow::after,
.service-process-flow .process-step::before {
  display: none;
}
.service-process-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 236px;
  overflow: visible;
  z-index: 0;
  pointer-events: none;
}
.service-process-path path {
  fill: none;
  stroke: url(#service-process-gradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .82;
  filter: drop-shadow(0 0 8px rgba(34,211,238,.16));
}
.service-process-flow .process-num {
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 10px var(--c-bg2), 0 14px 34px rgba(11,127,232,.24);
}

/* ═══════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════ */
.stat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stat-item { background:var(--c-surface); border:1px solid var(--c-border); border-radius:var(--r-lg); padding:36px 28px; text-align:center; transition:var(--t); }
.stat-item:hover { border-color:rgba(37,99,235,.3); transform:translateY(-4px); }
.stat-num { font-family:var(--f-display); font-size:2.6rem; font-weight:800; color:var(--c-white); line-height:1; margin-bottom:8px; }
.stat-num span { color:var(--c-teal); }
.stat-label { font-size:.82rem; color:var(--c-muted); }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testi-card { background:var(--c-surface); border:1px solid var(--c-border); border-radius:var(--r-lg); padding:32px; position:relative; transition:var(--t); }
.testi-card:hover { border-color:rgba(37,99,235,.25); transform:translateY(-4px); }
.testi-stars { color:#fbbf24; font-size:.9rem; margin-bottom:16px; letter-spacing:2px; }
.testi-stars::before { content:'\2605\2605\2605\2605\2605'; }
.testi-quote { font-size:3rem; line-height:1; color:var(--c-blue); opacity:.3; margin-bottom:-16px; font-family:Georgia,serif; }
.testi-text { font-size:.88rem; line-height:1.8; font-style:italic; margin-bottom:24px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,var(--c-blue),var(--c-teal)); display:flex; align-items:center; justify-content:center; font-size:.75rem; font-weight:700; color:#fff; flex-shrink:0; }
.testi-name { font-size:.88rem; font-weight:700; color:var(--c-white); }
.testi-role { font-size:.75rem; color:var(--c-muted); }

/* ═══════════════════════════════════════════════════
   TEAM CARDS
════════════════════════════════════════════════ */
.team-card { background:var(--c-surface); border:1px solid var(--c-border); border-radius:var(--r-lg); overflow:hidden; transition:var(--t); }
.team-card:hover { border-color:rgba(37,99,235,.25); transform:translateY(-4px); }
.team-photo { height:120px; display:flex; align-items:center; justify-content:center; font-family:var(--f-display); font-size:2.4rem; font-weight:800; color:#fff; background:linear-gradient(135deg,rgba(37,99,235,.3),rgba(6,182,212,.2)); }
.team-info { padding:24px; }
.team-name { font-size:1.1rem; margin-bottom:4px; }
.team-role { font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--c-teal); margin-bottom:12px; }
.team-bio  { font-size:.83rem; line-height:1.7; }

/* ═══════════════════════════════════════════════════
   ENGAGEMENT MODELS
════════════════════════════════════════════════ */
.engage-card { background:var(--c-surface); border:1px solid var(--c-border); border-radius:var(--r-lg); padding:36px; transition:var(--t); position:relative; }
.engage-card:hover { border-color:rgba(37,99,235,.3); transform:translateY(-4px); }
.engage-icon  { font-size:2rem; margin-bottom:18px; }
.engage-title { font-size:1.2rem; margin-bottom:8px; }
.engage-best  { font-size:.72rem; color:var(--c-teal); font-weight:700; letter-spacing:.1em; text-transform:uppercase; margin-bottom:10px; }
.engage-desc  { font-size:.875rem; line-height:1.75; margin-bottom:22px; }
.engage-list  { display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.engage-li    { display:flex; gap:10px; font-size:.85rem; color:var(--c-muted2); }
.engage-li::before { content:'✓'; color:var(--c-green); font-weight:700; flex-shrink:0; }

/* Tech stack */
.tech-stack-section { background:var(--c-bg2); }
.ts-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
.ts-item { background:var(--c-surface); border:1px solid var(--c-border); border-radius:var(--r-md); padding:20px 14px; text-align:center; transition:var(--t); }
.ts-item:hover { border-color:rgba(37,99,235,.3); transform:translateY(-3px); }
.ts-logo  { font-size:1.6rem; margin-bottom:8px; }
.ts-label { font-size:.74rem; font-weight:600; color:var(--c-muted2); }

body.single-tgt_service .page-hero-img,
body.single-tgt_industry .page-hero-img {
  object-fit: cover;
}

body.page-template-page-contact .page-hero-img,
.contact-page-hero .page-hero-img {
  object-fit: cover;
}

.contact-page-hero .page-hero-media {
  width: min(40vw, 520px);
}

body.single-tgt_service .tech-stack-section {
  overflow: hidden;
}
body.single-tgt_service .service-tech-marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
body.single-tgt_service .ts-marquee-row {
  overflow: hidden;
}
body.single-tgt_service .ts-marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: techMarqueeLeft 30s linear infinite;
  will-change: transform;
}
body.single-tgt_service .ts-marquee-row.is-reverse .ts-marquee-track {
  animation-name: techMarqueeRight;
}
body.single-tgt_service .service-tech-marquee:hover .ts-marquee-track {
  animation-play-state: paused;
}
body.single-tgt_service .service-tech-marquee .ts-item {
  width: 180px;
  min-height: 112px;
  flex: 0 0 180px;
}
@keyframes techMarqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}
@keyframes techMarqueeRight {
  from { transform: translateX(calc(-50% - 8px)); }
  to { transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════
   TIMELINE
════════════════════════════════════════════════ */
.timeline { display:flex; flex-direction:column; gap:0; }
.tl-item { display:flex; gap:16px; padding:20px 0; border-left:2px solid var(--c-border); padding-left:24px; position:relative; }
.tl-item:last-child { border-left-color:var(--c-border); padding-bottom:0; }
.tl-dot { position:absolute; left:-7px; top:24px; width:12px; height:12px; border-radius:50%; background:linear-gradient(135deg,var(--c-blue),var(--c-teal)); border:2px solid var(--c-bg2); flex-shrink:0; }
.tl-year  { font-family:var(--f-mono); font-size:.78rem; font-weight:700; color:var(--c-teal); min-width:40px; padding-top:2px; }
.tl-event { font-size:.95rem; font-weight:600; color:var(--c-white); margin-bottom:4px; }
.tl-desc  { font-size:.82rem; line-height:1.65; }

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════ */
.contact-grid { display:grid; grid-template-columns:1fr 420px; gap:60px; align-items:start; }
.contact-form-wrap { background:var(--c-surface); border:1px solid var(--c-border); border-radius:var(--r-xl); padding:48px; }
.form-title { font-size:1.6rem; margin-bottom:6px; }
.form-sub   { font-size:.9rem; margin-bottom:32px; }
.form-row   { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group { margin-bottom:20px; }
.form-label { display:block; font-size:.78rem; font-weight:600; color:var(--c-muted2); margin-bottom:7px; letter-spacing:.04em; text-transform:uppercase; }
.form-input, .form-textarea, .form-select {
  width:100%; background:rgba(255,255,255,.04); border:1px solid var(--c-border);
  border-radius:var(--r-md); color:var(--c-text); font-family:var(--f-body);
  font-size:.9rem; padding:13px 16px; transition:var(--t); outline:none; appearance:none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color:var(--c-blue); background:rgba(37,99,235,.06);
  box-shadow:0 0 0 3px rgba(37,99,235,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color:rgba(255,255,255,.2); }
.form-textarea { resize:vertical; min-height:130px; }
.form-select option { background:var(--c-bg2); }
.form-submit { width:100%; padding:15px; font-size:.95rem; font-weight:700; margin-top:8px; }
.form-note   { font-size:.76rem; text-align:center; margin-top:14px; opacity:.6; }
.contact-sidebar { display:flex; flex-direction:column; gap:20px; }
.contact-card { background:var(--c-surface); border:1px solid var(--c-border); border-radius:var(--r-lg); padding:24px; display:flex; gap:16px; transition:var(--t); }
.contact-card:hover { border-color:rgba(37,99,235,.3); }
.contact-card-icon { width:50px; height:50px; min-width:50px; border-radius:var(--r-md); background:rgba(37,99,235,.12); display:flex; align-items:center; justify-content:center; font-size:1.3rem; }
.contact-card-label { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--c-muted); margin-bottom:4px; }
.contact-card-val   { font-size:.9rem; font-weight:600; color:var(--c-white); line-height:1.5; }
.response-promise { background:rgba(6,182,212,.06); border:1px solid rgba(6,182,212,.2); border-radius:var(--r-lg); padding:24px; }
.rp-title { color:var(--c-teal); font-size:.9rem; font-weight:700; margin-bottom:8px; }
.rp-text  { font-size:.83rem; line-height:1.7; }
.social-row { display:flex; gap:10px; flex-wrap:wrap; margin-top:8px; }
.social-btn { width:38px; height:38px; border-radius:var(--r-sm); background:rgba(255,255,255,.06); border:1px solid var(--c-border); display:flex; align-items:center; justify-content:center; font-size:.9rem; transition:var(--t); color:var(--c-muted2); }
.social-btn:hover { background:var(--c-blue); border-color:var(--c-blue); color:#fff; transform:translateY(-2px); }
#form-feedback { display:none; padding:14px 18px; border-radius:var(--r-md); margin-bottom:18px; font-size:.875rem; font-weight:500; }
#form-feedback.success { background:rgba(16,185,129,.1); border:1px solid rgba(16,185,129,.3); color:#34d399; display:block; }
#form-feedback.error   { background:rgba(239,68,68,.1);  border:1px solid rgba(239,68,68,.3);  color:#f87171; display:block; }

/* ═══════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.faq-wrap { max-width:760px; margin:0 auto; }
.faq-item { border:1px solid var(--c-border); border-radius:var(--r-md); margin-bottom:10px; overflow:hidden; }
.faq-item.open { border-color:rgba(37,99,235,.35); }
.faq-q { display:flex; justify-content:space-between; align-items:center; padding:20px 24px; cursor:pointer; font-weight:600; font-size:.93rem; color:var(--c-white); background:var(--c-surface); transition:var(--t); user-select:none; }
.faq-q:hover { background:rgba(37,99,235,.05); }
.faq-chevron { width:26px; height:26px; border-radius:50%; background:rgba(37,99,235,.1); display:flex; align-items:center; justify-content:center; font-size:.75rem; flex-shrink:0; transition:var(--t); }
.faq-item.open .faq-chevron { background:var(--c-blue); transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .38s cubic-bezier(.4,0,.2,1); background:var(--c-surface); }
.faq-item.open .faq-a { max-height:500px; }
.faq-a-inner { padding:0 24px 20px; font-size:.875rem; line-height:1.8; border-top:1px solid var(--c-border); padding-top:16px; color: var(--c-muted2); }

/* ═══════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(6,182,212,.08));
  border: 1px solid rgba(37,99,235,.25);
  border-radius: var(--r-xl); padding: 72px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content:''; position:absolute; top:-50%; left:-50%;
  width:200%; height:200%;
  background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 60%);
  pointer-events:none;
}
.cta-title { font-size:clamp(1.8rem,3vw,2.8rem); margin:16px 0 14px; }
.cta-desc  { font-size:1rem; line-height:1.8; max-width:560px; margin:0 auto 36px; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ═══════════════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════════════ */
.sec-head { margin-bottom:60px; }
.sec-head.center { text-align:center; }
.sec-head.center .sec-desc { margin:0 auto; }
.sec-title { margin-top:12px; margin-bottom:14px; }
.sec-desc  { font-size:1.05rem; line-height:1.8; max-width:620px; }
.tgt-extra-section .sec-head {
  margin-bottom: 0;
}
.tgt-extra-section-light {
  background: #f3f8fc;
}
.tgt-extra-section-light .eyebrow {
  color: #0284c7;
  background: rgba(14, 165, 233, .12);
  border-color: rgba(14, 165, 233, .28);
}
.tgt-extra-section-light .sec-title {
  color: #0f172a;
  text-shadow: none;
}
.tgt-extra-section-light .sec-desc {
  color: #475569;
}
.tgt-extra-section-dark .sec-desc {
  color: #cbd5e1;
}
.divider { height:1px; background:var(--c-border); margin:0; }

/* ═══════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
#footer { background:var(--c-bg2); border-top:1px solid var(--c-border); padding:72px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1.5fr; gap:48px; padding-bottom:56px; border-bottom:1px solid var(--c-border); }
.footer-logo { display:flex; align-items:center; gap:12px; color:var(--c-white); }
.footer-logo-img { width:auto; height:58px; max-width:118px; object-fit:contain; display:block; }
.footer-logo-name { max-width:210px; font-family:var(--f-display); font-size:1rem; line-height:1.18; font-weight:800; color:var(--c-white); }
.footer-brand-desc { font-size:.85rem; line-height:1.8; margin:18px 0 24px; }
.footer-col-title { font-size:.74rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--c-white); margin-bottom:18px; }
.footer-links { display:flex; flex-direction:column; gap:9px; }
.footer-link  { font-size:.85rem; color:var(--c-muted); transition:var(--t); }
.footer-link:hover { color:var(--c-white); padding-left:4px; }
.footer-contact-item { display:flex; gap:10px; margin-bottom:12px; font-size:.85rem; color:var(--c-muted); }
.footer-contact-icon { color:var(--c-teal); flex-shrink:0; }
.footer-bottom { border-top:1px solid var(--c-border); }
.footer-bottom > .wrap-footer { padding-top:22px; padding-bottom:22px; display:flex; justify-content:space-between; align-items:center; font-size:.78rem; color:var(--c-muted); flex-wrap:wrap; gap:12px; }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { color:var(--c-muted); transition:var(--t); }
.footer-bottom-links a:hover { color:var(--c-white); }

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.sitemap-group {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.sitemap-group h2 {
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.sitemap-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sitemap-link {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: var(--c-muted2);
  font-size: .92rem;
  transition: var(--t);
}
.sitemap-link:last-child { border-bottom: 0; }
.sitemap-link:hover {
  color: var(--c-white);
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════
   SCROLL TOP
════════════════════════════════════════════════ */
#scroll-top {
  position:fixed; bottom:28px; right:28px; z-index:998;
  width:44px; height:44px; border-radius:50%; background:var(--c-blue);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; color:#fff; opacity:0; pointer-events:none; transition:var(--t);
  box-shadow:0 4px 20px rgba(37,99,235,.4);
}
#scroll-top.show { opacity:1; pointer-events:all; }
#scroll-top:hover { transform:translateY(-3px); box-shadow:0 8px 28px rgba(37,99,235,.55); }

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATION
════════════════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width:1100px) {
  .g4 { grid-template-columns:repeat(2,1fr); }
  .ind-quick-grid { grid-template-columns:repeat(2,1fr); }
  .ts-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr 1fr; gap:32px; }
  .footer-brand { grid-column: 1 / -1; }
  .process-grid { grid-template-columns:repeat(2,1fr); gap:32px; }
  .process-line { display:none; }
  .service-process-path,
  .service-process-flow::before,
  .service-process-flow::after,
  .service-process-flow .process-step::before {
    display: none;
  }
  .stat-grid { grid-template-columns:repeat(2,1fr); }
  .mega-menu { min-width: 580px; }
  .mega-ind-feature {
    grid-template-columns: 1fr;
  }
}
@media (max-width:900px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-card-wrap { display:none; }
  .g2 { grid-template-columns:1fr; gap:40px; }
  .g3 { grid-template-columns:repeat(2,1fr); }
  .contact-grid { grid-template-columns:1fr; }
  .ind-detail-row { grid-template-columns:1fr; gap:36px; }
  .ind-detail-row:nth-child(even) .ind-detail-text { order:1; }
  .ind-detail-row:nth-child(even) .ind-detail-vis  { order:2; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .cta-banner { padding:52px 28px; }
  .contact-form-wrap { padding:32px 24px; }
  .form-row { grid-template-columns:1fr; }
  .ts-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px) {
  .g3 { grid-template-columns:1fr; }
  .g4 { grid-template-columns:1fr 1fr; }
  .ind-quick-grid { grid-template-columns:1fr 1fr; }
  .process-grid { grid-template-columns:1fr; }
  .service-process-flow {
    row-gap: 34px;
  }
  .stat-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .sitemap-grid { grid-template-columns:1fr; }
  .hero-stats { flex-wrap:wrap; gap:24px; }
  .section { padding:64px 0; }
  .cta-banner { padding:44px 20px; }
  h1 { font-size:2rem; }
  h2 { font-size:1.65rem; }
  .ts-grid { grid-template-columns:repeat(3,1fr); }
  .svc-detail { flex-direction:column; }
  .mega-body-industries { grid-template-columns: 1fr; }
}

/* Homepage redesign pass: distinct from card-heavy competitor layouts */
body.home {
  background:
    linear-gradient(180deg, #08111b 0%, #0a1119 38%, #101016 100%);
}
body.home .hero {
  min-height: 92vh;
  padding: 96px 24px 64px;
  isolation: isolate;
}
body.home:not(.admin-bar) .hero {
  min-height: 92vh;
  padding-top: 96px;
}
body.home .hero-bg {
  background:
    linear-gradient(120deg, rgba(8,17,27,.96) 0%, rgba(11,26,33,.94) 48%, rgba(29,25,18,.94) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 18px);
}
body.home .hero-grid {
  opacity: .72;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.78) 58%, transparent 100%);
}
body.home .hero-inner {
  max-width: 1220px;
  grid-template-columns: minmax(0,1.08fr) minmax(360px,.82fr);
  gap: 72px;
}
body.home .hero-badge {
  border-radius: 4px;
  padding: 8px 12px;
  background: rgba(226,232,240,.06);
  border-color: rgba(226,232,240,.14);
  color: #d8c68b;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.home .hero-badge-dot {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #35d0c5;
  font-family: var(--f-mono);
  font-size: .72rem;
}
body.home .hero-title {
  max-width: 720px;
  font-size: clamp(2.9rem, 6vw, 6.6rem);
  line-height: .95;
  letter-spacing: 0;
}
body.home .hero-title em {
  color: #d8c68b;
  background: none;
  -webkit-text-fill-color: currentColor;
}
body.home .hero-desc {
  max-width: 640px;
  font-size: 1.08rem;
  color: #b9c3ca;
}
body.home .hero-actions {
  margin-bottom: 32px;
}
body.home .btn {
  border-radius: 6px;
}
body.home .btn-primary {
  background: #d8c68b;
  color: #101016;
  box-shadow: 0 16px 40px rgba(216,198,139,.18);
}
body.home .btn-primary:hover {
  background: #f0dd9d;
  color: #101016;
  box-shadow: 0 18px 48px rgba(216,198,139,.24);
}
body.home .btn-outline {
  border-color: rgba(255,255,255,.18);
  color: #e8edf2;
}
body.home .btn-outline:hover {
  border-color: #35d0c5;
  color: #35d0c5;
}
body.home .hero-stats {
  display: grid;
  grid-template-columns: repeat(4,minmax(110px,1fr));
  gap: 0;
  max-width: 720px;
  border: 1px solid rgba(255,255,255,.11);
  padding: 0;
  background: rgba(255,255,255,.035);
}
body.home .hero-stats > div {
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,.09);
}
body.home .hero-stats > div:last-child {
  border-right: 0;
}
body.home .hero-stats .stat-val {
  font-family: var(--f-mono);
  font-size: 1.35rem;
  letter-spacing: 0;
}
body.home .hero-stats .stat-val span,
body.home .stat-num span {
  color: #35d0c5;
}
body.home .hero-stats .stat-lbl {
  color: #8d99a3;
  text-transform: uppercase;
  letter-spacing: .08em;
}
body.home .hero-card {
  max-width: 460px;
  border-radius: 8px;
  padding: 22px;
  background: rgba(10,17,25,.82);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  animation: none;
}
body.home .hc-header {
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
body.home .hc-kicker {
  margin-bottom: 3px;
  color: #35d0c5;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.home .hc-title {
  font-size: 1.05rem;
}
body.home .hc-badge,
body.home .svc-tag {
  border-radius: 4px;
  background: rgba(53,208,197,.1);
  border-color: rgba(53,208,197,.22);
  color: #35d0c5;
}
body.home .cockpit-map {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 8px;
  margin: 18px 0;
}
body.home .cockpit-map span {
  height: 64px;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(180deg, rgba(216,198,139,.22), rgba(53,208,197,.06)),
    repeating-linear-gradient(180deg, rgba(255,255,255,.08) 0 2px, transparent 2px 12px);
}
body.home .cockpit-map span:nth-child(even) {
  transform: translateY(14px);
  background:
    linear-gradient(180deg, rgba(53,208,197,.18), rgba(216,198,139,.05)),
    repeating-linear-gradient(180deg, rgba(255,255,255,.08) 0 2px, transparent 2px 12px);
}
body.home .tech-row {
  border-radius: 4px;
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.09);
  padding: 12px;
}
body.home .tech-row:hover {
  background: rgba(53,208,197,.06);
  border-color: rgba(53,208,197,.2);
}
body.home .tech-icon,
body.home .feat-icon {
  border-radius: 4px;
  background: rgba(216,198,139,.12);
  color: #d8c68b;
  font-family: var(--f-mono);
  font-size: .72rem;
}
body.home .tech-status {
  margin-left: auto;
  color: #d8c68b;
  font-family: var(--f-mono);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
body.home .hero-chip {
  border-radius: 4px;
  background: #111923;
  border-color: rgba(255,255,255,.14);
  color: #e8edf2;
}
body.home .ticker {
  background: #d8c68b;
  border: 0;
}
body.home .ticker-item {
  color: #111923;
}
body.home .ticker-dot {
  background: #111923;
}
body.home .section {
  background: #f6f5ef;
  color: #111923;
}
body.home .section-alt {
  background: #111923;
  color: #e8edf2;
}
body.home .sec-title,
body.home .svc-title,
body.home .ind-name,
body.home .process-step-title,
body.home .stat-num,
body.home .feat-title {
  color: inherit;
}
body.home .sec-desc,
body.home .svc-desc,
body.home .ind-desc,
body.home .process-step-desc,
body.home .feat-desc {
  color: rgba(17,25,35,.68);
}
body.home .section-alt .sec-desc,
body.home .section-alt .feat-desc,
body.home .section-alt .process-step-desc {
  color: rgba(232,237,242,.68);
}
body.home .svc-card,
body.home .ind-card,
body.home .stat-item {
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(17,25,35,.16);
  box-shadow: none;
}
body.home .svc-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}
body.home .svc-card::before {
  height: 100%;
  width: 4px;
  right: auto;
  background: #35d0c5;
  transform: scaleY(.18);
  transform-origin: bottom;
}
body.home .svc-card:hover::before {
  transform: scaleY(1);
}
body.home .svc-card:hover,
body.home .ind-card:hover,
body.home .stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(17,25,35,.34);
  box-shadow: 0 24px 54px rgba(17,25,35,.1);
}
body.home .svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(17,25,35,.08);
  color: #111923;
  font-size: 1.15rem;
}
body.home .svc-link {
  margin-top: auto;
  color: #0b8077;
}
body.home .feat-item {
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.11);
}
body.home .feat-item:hover {
  background: rgba(53,208,197,.06);
}
body.home .ind-quick-grid {
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-top: 1px solid rgba(17,25,35,.14);
  border-left: 1px solid rgba(17,25,35,.14);
}
body.home .ind-card {
  border-top: 0;
  border-left: 0;
  border-radius: 0;
}
body.home .process-grid {
  gap: 0;
  border: 1px solid rgba(255,255,255,.12);
}
body.home .process-line {
  display: none;
}
body.home .process-step {
  text-align: left;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.12);
}
body.home .process-step:last-child {
  border-right: 0;
}
body.home .process-num {
  width: auto;
  height: auto;
  margin: 0 0 42px;
  border-radius: 0;
  justify-content: flex-start;
  background: transparent;
  color: #d8c68b;
}
body.home .stat-grid {
  gap: 0;
  border: 1px solid rgba(17,25,35,.14);
}
body.home .stat-item {
  border: 0;
  border-right: 1px solid rgba(17,25,35,.14);
  border-radius: 0;
}
body.home .stat-item:last-child {
  border-right: 0;
}
body.home .stat-label {
  color: rgba(17,25,35,.58);
  letter-spacing: .06em;
  text-transform: uppercase;
}
body.home .cta-banner {
  border-radius: 8px;
  background:
    linear-gradient(110deg, #111923 0%, #102b31 58%, #2c281e 100%);
  border-color: rgba(255,255,255,.12);
}
body.home .cta-banner::before {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

@media (max-width: 900px) {
  body.home .hero,
  body.home:not(.admin-bar) .hero {
    min-height: auto;
    padding-top: 112px;
  }
  body.home .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.home .hero-card-wrap {
    display: block;
  }
  body.home .hero-stats,
  body.home .process-grid,
  body.home .stat-grid {
    grid-template-columns: repeat(2,1fr);
  }
  body.home .process-step:nth-child(3),
  body.home .stat-item:nth-child(2) {
    border-right: 0;
  }
  body.home .process-step:nth-child(2),
  body.home .process-step:nth-child(3) {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  body.home .ind-quick-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 600px) {
  body.home .hero-title {
    font-size: 2.65rem;
  }
  body.home .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  body.home .hero-stats,
  body.home .process-grid,
  body.home .stat-grid,
  body.home .ind-quick-grid {
    grid-template-columns: 1fr;
  }
  body.home .hero-stats > div,
  body.home .process-step,
  body.home .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(17,25,35,.14);
  }
  body.home .hero-stats > div {
    border-bottom-color: rgba(255,255,255,.09);
  }
  body.home .process-step {
    border-bottom-color: rgba(255,255,255,.12);
  }
  body.home .hero-stats > div:last-child,
  body.home .process-step:last-child,
  body.home .stat-item:last-child {
    border-bottom: 0;
  }
  body.home .hero-card {
    padding: 16px;
  }
  body.home .hero-chip {
    display: none;
  }
}

/* Homepage premium refresh with dynamic hero slider */
body.home {
  --f-display: 'Manrope', 'Inter', sans-serif;
  background: #f7f8fb;
}
body.home h1,
body.home h2,
body.home h3,
body.home h4,
body.home h5 {
  letter-spacing: 0;
}
body.home .hero-slider {
  min-height: 100vh;
  display: block;
  padding: 0;
  background: #07111f;
  color: #fff;
}
body.home:not(.admin-bar) .hero-slider {
  min-height: 100vh;
  padding-top: 0;
}
body.home .hero-slider .hero-bg {
  background:
    radial-gradient(circle at 78% 18%, rgba(45,212,191,.22), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(96,165,250,.22), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #10213a 48%, #0b1628 100%);
}
body.home .hero-slider .hero-grid {
  opacity: .45;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.065) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 88%);
}
body.home .hero-slider-track {
  position: relative;
  min-height: calc(100vh - 108px);
  padding-top: 0;
}
body.home .hero-slide {
  position: absolute;
  inset: 72px 0 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition: opacity .55s ease, transform .55s ease, visibility .55s;
  pointer-events: none;
}
body.home .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
body.home .hero-slide .hero-inner {
  width: 100%;
  max-width: 1240px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 68px;
  align-items: center;
}
body.home .hero-text {
  max-width: 720px;
}
body.home .hero-badge {
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  color: #cbd5e1;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
body.home .hero-badge-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2dd4bf;
  color: #06101d;
  font-family: var(--f-mono);
  font-size: .68rem;
}
body.home .hero-title {
  max-width: 720px;
  margin: 0 0 22px;
  font-family: var(--f-display);
  font-size: clamp(2.85rem, 5.35vw, 5.75rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}
body.home .hero-desc {
  max-width: 620px;
  margin-bottom: 34px;
  color: #d2dbe8;
  font-size: 1.1rem;
  line-height: 1.8;
}
body.home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}
body.home .btn {
  border-radius: 12px;
  font-weight: 800;
}
body.home .btn-primary {
  background: #2dd4bf;
  color: #06101d;
  box-shadow: 0 18px 44px rgba(45,212,191,.26);
}
body.home .btn-primary:hover {
  background: #67e8f9;
  color: #06101d;
  box-shadow: 0 20px 52px rgba(103,232,249,.28);
}
body.home .hero-slider .btn-outline {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
body.home .hero-slider .btn-outline:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.34);
  color: #fff;
}
body.home .hero-visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .hero-visual::before {
  content: '';
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,.22), transparent 68%);
  filter: blur(6px);
}
body.home .visual-shell {
  position: relative;
  width: min(100%, 500px);
  min-height: 388px;
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.06)),
    rgba(8,18,32,.78);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 34px 90px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
body.home .visual-shell::after {
  content: '';
  position: absolute;
  inset: auto -20% -38% 18%;
  height: 240px;
  transform: rotate(-10deg);
  background: linear-gradient(90deg, rgba(45,212,191,.35), rgba(96,165,250,.1));
  filter: blur(30px);
}
body.home .visual-topbar {
  display: flex;
  gap: 7px;
  margin-bottom: 28px;
}
body.home .visual-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.44);
}
body.home .visual-title {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}
body.home .visual-metric-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
body.home .visual-metric-row div,
body.home .visual-feed span,
body.home .ai-card,
body.home .roadmap-step {
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
}
body.home .visual-metric-row div {
  padding: 20px;
}
body.home .visual-metric-row strong {
  display: block;
  color: #2dd4bf;
  font-size: 2rem;
  line-height: 1;
}
body.home .visual-metric-row span,
body.home .visual-feed span {
  color: #cbd5e1;
  font-size: .8rem;
}
body.home .visual-chart {
  position: relative;
  z-index: 1;
  height: 124px;
  display: flex;
  align-items: end;
  gap: 14px;
  padding: 18px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(3,7,18,.36);
}
body.home .visual-chart span {
  flex: 1;
  min-width: 0;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #67e8f9, #2dd4bf);
  animation: heroBars 3.8s ease-in-out infinite;
}
body.home .visual-chart span:nth-child(1) { height: 42%; }
body.home .visual-chart span:nth-child(2) { height: 72%; animation-delay: .12s; }
body.home .visual-chart span:nth-child(3) { height: 56%; animation-delay: .24s; }
body.home .visual-chart span:nth-child(4) { height: 88%; animation-delay: .36s; }
body.home .visual-chart span:nth-child(5) { height: 64%; animation-delay: .48s; }
@keyframes heroBars {
  0%, 100% { transform: scaleY(.86); opacity: .82; }
  50% { transform: scaleY(1); opacity: 1; }
}
body.home .visual-feed {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
body.home .visual-feed span {
  display: block;
  padding: 12px 14px;
}
body.home .visual-shell-ai {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home .ai-orbit {
  position: absolute;
  width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  animation: heroRotate 18s linear infinite;
}
body.home .ai-orbit span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 28px rgba(45,212,191,.75);
}
body.home .ai-orbit span:nth-child(1) { top: -7px; left: 50%; }
body.home .ai-orbit span:nth-child(2) { right: -7px; top: 50%; }
body.home .ai-orbit span:nth-child(3) { bottom: -7px; left: 50%; }
body.home .ai-orbit span:nth-child(4) { left: -7px; top: 50%; }
@keyframes heroRotate { to { transform: rotate(360deg); } }
body.home .ai-core {
  width: 150px;
  height: 150px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2dd4bf, #60a5fa);
  color: #06101d;
  font-size: 3rem;
  font-weight: 900;
  box-shadow: 0 24px 70px rgba(45,212,191,.28);
}
body.home .ai-card {
  position: absolute;
  padding: 13px 16px;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
}
body.home .ai-card-a { top: 70px; left: 36px; }
body.home .ai-card-b { right: 36px; top: 150px; }
body.home .ai-card-c { bottom: 76px; left: 72px; }
body.home .visual-shell-roadmap {
  display: grid;
  align-content: center;
  gap: 14px;
  --roadmap-badge-left: 18px;
  --roadmap-number-size: 44px;
}
body.home .roadmap-line {
  position: absolute;
  left: calc(var(--roadmap-badge-left) + (var(--roadmap-number-size) / 2));
  top: 64px;
  bottom: 64px;
  width: 2px;
  background: linear-gradient(180deg, #2dd4bf, rgba(96,165,250,.2));
  transform: translateX(-50%);
  z-index: 0;
}
body.home .roadmap-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 14px 18px 14px calc(var(--roadmap-badge-left) + var(--roadmap-number-size) + 16px);
  color: #fff;
}
body.home .roadmap-step strong {
  position: absolute;
  left: var(--roadmap-badge-left);
  top: 50%;
  transform: translateY(-50%);
  width: var(--roadmap-number-size);
  height: var(--roadmap-number-size);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  color: #cbd5e1;
  font-family: var(--f-mono);
}
body.home .roadmap-step.is-done strong,
body.home .roadmap-step.is-live strong {
  background: #2dd4bf;
  color: #06101d;
}
body.home .roadmap-step span {
  font-weight: 800;
}
body.home .hero-controls {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding-bottom: 28px;
}
body.home .hero-controls .hero-stats {
  margin-top: 0;
  max-width: none;
  grid-template-columns: repeat(4, minmax(110px,1fr));
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
body.home .hero-controls .hero-stats > div {
  padding: 14px 18px;
}
body.home .hero-controls .stat-val {
  font-family: var(--f-display);
  font-size: 1.45rem;
}
body.home .hero-controls .stat-val span {
  color: #2dd4bf;
}
body.home .hero-controls .stat-lbl {
  color: #cbd5e1;
  letter-spacing: 0;
  text-transform: none;
}
body.home .hero-dots {
  display: flex;
  gap: 10px;
}
body.home .hero-dot {
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.26);
  transition: width .25s ease, background .25s ease;
}
body.home .hero-dot.is-active {
  width: 72px;
  background: #2dd4bf;
}
body.home .ticker {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
body.home .ticker-item {
  color: #334155;
}
body.home .ticker-dot {
  background: #2dd4bf;
}
body.home .section {
  background: #f7f8fb;
  color: #0f172a;
}
body.home .section-alt {
  background:
    radial-gradient(circle at 86% 20%, rgba(45,212,191,.14), transparent 28%),
    linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
}
body.home .sec-head {
  max-width: 820px;
  margin: 0 auto 52px;
}
body.home .eyebrow {
  border-radius: 999px;
  color: #0891b2;
  background: rgba(8,145,178,.1);
  border-color: rgba(8,145,178,.16);
}
body.home .section-alt .eyebrow {
  color: #67e8f9;
  background: rgba(103,232,249,.1);
  border-color: rgba(103,232,249,.18);
}
body.home .sec-title {
  color: inherit;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}
body.home .sec-desc {
  color: #64748b;
  font-size: 1.02rem;
}
body.home .section-alt .sec-desc,
body.home .section-alt .feat-desc,
body.home .section-alt .process-step-desc {
  color: #cbd5e1;
}
body.home .svc-card,
body.home .ind-card,
body.home .stat-item,
body.home .testi-card {
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e7ebf1;
  box-shadow: 0 18px 48px rgba(15,23,42,.06);
}
body.home .svc-card {
  min-height: 320px;
  padding: 30px;
}
body.home .svc-card::before {
  height: 5px;
  width: auto;
  right: 0;
  background: linear-gradient(90deg, #2dd4bf, #60a5fa);
  transform: scaleX(.16);
  transform-origin: left;
}
body.home .svc-card:hover::before {
  transform: scaleX(1);
}
body.home .svc-card:hover,
body.home .ind-card:hover,
body.home .stat-item:hover,
body.home .testi-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45,212,191,.45);
  box-shadow: 0 24px 68px rgba(15,23,42,.12);
}
body.home .svc-icon,
body.home .ind-emoji {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45,212,191,.16), rgba(96,165,250,.14));
}
body.home .svc-title,
body.home .ind-name,
body.home .stat-num {
  color: #0f172a;
}
body.home .svc-desc,
body.home .ind-desc {
  color: #64748b;
}
body.home .svc-tag {
  border-radius: 999px;
  background: #eefcff;
  border-color: #c9f5f2;
  color: #0f766e;
}
body.home .ind-quick-grid {
  gap: 22px;
  border: 0;
}
body.home .ind-card {
  border: 1px solid #e7ebf1;
  border-radius: 22px;
}
body.home .feat-item {
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  padding: 24px;
}
body.home .feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #2dd4bf;
  color: #06101d;
  font-weight: 800;
}
body.home .process-grid {
  gap: 18px;
  border: 0;
}
body.home .process-step {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
}
body.home .process-step:last-child {
  border-right: 1px solid rgba(255,255,255,.14);
}
body.home .process-num {
  width: 52px;
  height: 52px;
  margin: 0 0 26px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2dd4bf;
  color: #06101d;
}
body.home .stat-grid {
  gap: 22px;
  border: 0;
}
body.home .stat-item {
  border-right: 1px solid #e7ebf1;
  border-radius: 22px;
}
body.home .stat-label {
  color: #64748b;
  letter-spacing: 0;
  text-transform: none;
}
body.home .cta-banner {
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 16%, rgba(45,212,191,.22), transparent 32%),
    linear-gradient(135deg, #0f172a, #10213a);
  border: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 1024px) {
  body.home .hero-slide .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  body.home .hero-visual {
    min-height: 380px;
  }
  body.home .visual-shell {
    min-height: 340px;
  }
  body.home .hero-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1400px) and (max-height: 820px) {
  body.home .hero-slider-track {
    min-height: calc(100vh - 76px);
  }
  body.home .hero-slide {
    top: 76px;
  }
  body.home .hero-slide .hero-inner {
    gap: 46px;
  }
  body.home .hero-title {
    max-width: 660px;
    font-size: clamp(2.65rem, 5vw, 4.95rem);
  }
  body.home .hero-desc {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.65;
  }
  body.home .hero-visual {
    min-height: 390px;
  }
  body.home .visual-shell {
    min-height: 350px;
    padding: 22px;
  }
  body.home .visual-chart {
    height: 96px;
  }
  body.home .hero-controls {
    margin-top: 22px;
    padding-bottom: 18px;
  }
  body.home .hero-controls .hero-stats > div {
    padding: 12px 16px;
  }
}

@media (max-width: 700px) {
  body.home .hero-slider-track {
    min-height: auto;
    padding: 112px 0 24px;
  }
  body.home .hero-slide {
    position: relative;
    display: none;
    transform: none;
  }
  body.home .hero-slide.is-active {
    display: flex;
  }
  body.home .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }
  body.home .hero-desc {
    font-size: 1rem;
  }
  body.home .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  body.home .hero-visual {
    min-height: 310px;
  }
  body.home .visual-shell {
    min-height: 300px;
    padding: 18px;
    border-radius: 22px;
  }
  body.home .visual-metric-row {
    grid-template-columns: 1fr;
  }
  body.home .visual-chart {
    height: 104px;
  }
  body.home .ai-orbit {
    width: 230px;
  }
  body.home .ai-core {
    width: 118px;
    height: 118px;
    border-radius: 32px;
    font-size: 2.25rem;
  }
  body.home .ai-card {
    display: none;
  }
  body.home .hero-controls .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  body.home .hero-dots {
    justify-content: center;
  }
  body.home .ind-quick-grid,
  body.home .stat-grid,
  body.home .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero responsive hardening: flow-based slides prevent control overlap */
body.home .hero-slider {
  min-height: auto;
  overflow: hidden;
}
body.home .hero-slider-track {
  min-height: 0;
  padding: clamp(122px, 14vh, 158px) 0 42px;
}
body.home .hero-slide {
  position: relative;
  inset: auto;
  top: auto;
  min-height: 0;
  display: none;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: none;
  pointer-events: none;
}
body.home .hero-slide.is-active {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: heroSlideIn .45s ease both;
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
body.home .hero-slide .hero-inner {
  min-height: clamp(480px, 60vh, 620px);
}
body.home .hero-title {
  font-size: clamp(2.6rem, 5vw, 5.25rem);
  line-height: 1.04;
}
body.home .hero-visual {
  min-height: clamp(330px, 46vh, 450px);
}
body.home .visual-shell {
  min-height: 0;
  height: auto;
  max-height: none;
}
body.home .visual-title {
  margin-bottom: 16px;
}
body.home .visual-metric-row {
  margin-bottom: 16px;
}
body.home .visual-metric-row div {
  padding: 16px;
}
body.home .visual-chart {
  height: clamp(78px, 13vh, 118px);
  margin-bottom: 16px;
}
body.home .visual-feed {
  gap: 8px;
}
body.home .visual-feed span {
  padding: 10px 12px;
}
body.home .visual-shell-roadmap {
  height: auto;
  min-height: 390px;
  gap: 14px;
}
body.home .roadmap-line {
  top: 62px;
  bottom: 62px;
}
body.home .roadmap-step {
  padding: 14px 16px;
}
body.home .roadmap-step strong {
  width: 40px;
  height: 40px;
}
body.home .hero-controls {
  margin-top: 0;
  padding-bottom: 30px;
}
body.home .hero-controls .hero-stats {
  align-self: stretch;
}

@media (min-width: 1025px) and (max-height: 760px) {
  body.home .hero-slider-track {
    padding-top: 106px;
    padding-bottom: 24px;
  }
  body.home .hero-slide .hero-inner {
    min-height: 455px;
  }
  body.home .hero-title {
    font-size: clamp(2.35rem, 4.55vw, 4.45rem);
    max-width: 630px;
  }
  body.home .hero-desc {
    margin-bottom: 20px;
    font-size: .98rem;
    line-height: 1.6;
  }
  body.home .hero-badge {
    margin-bottom: 16px;
  }
  body.home .visual-shell,
  body.home .visual-shell-roadmap {
    height: auto;
    min-height: 360px;
  }
  body.home .ai-orbit {
    width: 270px;
  }
  body.home .ai-core {
    width: 128px;
    height: 128px;
    border-radius: 34px;
  }
  body.home .hero-controls {
    padding-bottom: 18px;
  }
  body.home .hero-controls .hero-stats > div {
    padding: 10px 14px;
  }
}

@media (max-width: 1024px) {
  body.home .hero-slider-track {
    padding: 124px 0 32px;
  }
  body.home .hero-slide .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  body.home .hero-text {
    max-width: 760px;
  }
  body.home .hero-title {
    max-width: 760px;
    font-size: clamp(2.55rem, 7.5vw, 4.8rem);
  }
  body.home .hero-visual {
    min-height: 0;
  }
  body.home .visual-shell,
  body.home .visual-shell-roadmap {
    width: min(100%, 620px);
    height: auto;
    min-height: 360px;
  }
  body.home .hero-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body.home .hero-slider-track {
    padding: 116px 0 26px;
  }
  body.home .hero-title {
    font-size: clamp(2.15rem, 11vw, 3.5rem);
  }
  body.home .hero-desc {
    margin-bottom: 24px;
  }
  body.home .visual-shell,
  body.home .visual-shell-roadmap {
    min-height: 300px;
    padding: 16px;
  }
  body.home .visual-shell-roadmap {
    --roadmap-badge-left: 14px;
    --roadmap-number-size: 36px;
  }
  body.home .roadmap-line {
    top: 54px;
    bottom: 54px;
  }
  body.home .roadmap-step {
    min-height: 62px;
    padding-left: calc(var(--roadmap-badge-left) + var(--roadmap-number-size) + 14px);
  }
  body.home .visual-metric-row {
    grid-template-columns: 1fr 1fr;
  }
  body.home .visual-metric-row strong {
    font-size: 1.5rem;
  }
  body.home .visual-feed span:nth-child(3) {
    display: none;
  }
  body.home .roadmap-step {
    padding: 12px;
  }
  body.home .roadmap-step strong {
    width: var(--roadmap-number-size);
    height: var(--roadmap-number-size);
  }
  body.home .hero-controls .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  body.home .hero-slider-track {
    padding-top: 108px;
  }
  body.home .hero-title {
    font-size: 2.15rem;
  }
  body.home .hero-badge {
    font-size: .66rem;
  }
  body.home .visual-shell,
  body.home .visual-shell-roadmap {
    min-height: 280px;
  }
  body.home .visual-chart {
    height: 74px;
  }
  body.home .hero-controls .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* Header and homepage hero spacing refinements */
#header {
  background: #06101d;
  border-bottom: 1px solid rgba(45,212,191,.12);
  box-shadow: 0 12px 32px rgba(0,0,0,.24);
}
#header.scrolled {
  background: rgba(6,16,29,.94);
  border-bottom-color: rgba(45,212,191,.18);
}
.nav-link {
  color: #93a4ba;
}
.nav-link:hover,
.nav-item:hover .nav-link {
  color: #ffffff;
  background: rgba(255,255,255,.055);
}
.nav-link.active {
  color: #ffffff;
}
.nav-link.active::after {
  background: #2dd4bf;
}
.nav-cta .btn-ghost {
  background: rgba(37,99,235,.14);
  border-color: rgba(96,165,250,.28);
  color: #93c5fd;
}
.nav-cta .btn-primary {
  background: #2dd4bf;
  color: #06101d;
  box-shadow: 0 12px 30px rgba(45,212,191,.22);
}
body.home .hero-slider-track {
  padding-top: 72px;
}
body.home .hero-slide .hero-inner {
  align-items: center;
}

@media (max-width: 1024px) {
  body.home .hero-slider-track {
    padding-top: 88px;
  }
}

@media (max-width: 700px) {
  body.home .hero-slider-track {
    padding-top: 86px;
  }
}

/* Roadmap timeline reset: connector is anchored to the badges */
body.home .visual-shell-roadmap {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 20px;
}
body.home .visual-shell-roadmap .roadmap-line {
  display: none;
}
body.home .visual-shell-roadmap .roadmap-step {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 12px 18px 12px 76px;
  border-radius: 14px;
  overflow: visible;
}
body.home .visual-shell-roadmap .roadmap-step strong {
  position: absolute;
  left: 16px;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border-radius: 12px;
}
body.home .visual-shell-roadmap .roadmap-step strong::before,
body.home .visual-shell-roadmap .roadmap-step strong::after {
  content: '';
  position: absolute;
  left: 50%;
  z-index: -1;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(45,212,191,.68);
}
body.home .visual-shell-roadmap .roadmap-step strong::before {
  bottom: 100%;
  height: 32px;
}
body.home .visual-shell-roadmap .roadmap-step strong::after {
  top: 100%;
  height: 32px;
}
body.home .visual-shell-roadmap .roadmap-line + .roadmap-step strong::before {
  display: none;
}
body.home .visual-shell-roadmap .roadmap-step:last-child strong::after {
  display: none;
}

@media (max-width: 700px) {
  body.home .visual-shell-roadmap {
    padding: 16px;
    gap: 10px;
  }
  body.home .visual-shell-roadmap .roadmap-step {
    min-height: 58px;
    padding-left: 66px;
  }
  body.home .visual-shell-roadmap .roadmap-step strong {
    left: 14px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  body.home .visual-shell-roadmap .roadmap-step strong::before,
  body.home .visual-shell-roadmap .roadmap-step strong::after {
    height: 28px;
  }
}

/* Reusable CTA modals */
.tgt-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.tgt-modal.open { display: flex; }
.tgt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,8,23,.74);
  backdrop-filter: blur(10px);
}
.tgt-modal-panel {
  position: relative;
  width: min(100%, 680px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 24px;
  padding: 34px;
  background: radial-gradient(circle at 90% 0%, rgba(45,212,191,.16), transparent 32%), #fff;
  color: #0f172a;
  box-shadow: 0 34px 100px rgba(0,0,0,.36);
}
.tgt-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef2f7;
  color: #0f172a;
  font-size: 1.3rem;
}
.tgt-modal-kicker {
  margin-bottom: 8px;
  color: #0f766e;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tgt-modal-panel h2 { color: #0f172a; margin-bottom: 8px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.tgt-modal-panel p { color: #64748b; margin-bottom: 22px; }
.tgt-modal-form { display: grid; gap: 16px; }
.tgt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tgt-modal-form label { display: grid; gap: 7px; color: #334155; font-size: .85rem; font-weight: 700; }
.tgt-modal-form input,
.tgt-modal-form textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: #0f172a;
  background: #f8fafc;
}
.tgt-modal-form textarea { min-height: 120px; resize: vertical; }
.tgt-modal-form .btn {
  justify-content: center;
  text-align: center;
  width: 100%;
}
.tgt-modal-form input:focus,
.tgt-modal-form textarea:focus {
  outline: none;
  border-color: #2dd4bf;
  box-shadow: 0 0 0 4px rgba(45,212,191,.14);
}
.tgt-modal-feedback {
  display: none;
  padding: 11px 13px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 700;
}
.tgt-modal-feedback.success { display: block; color: #065f46; background: #d1fae5; }
.tgt-modal-feedback.error { display: block; color: #991b1b; background: #fee2e2; }

@media (max-width: 640px) {
  .tgt-modal { padding: 14px; }
  .tgt-modal-panel { padding: 28px 18px 20px; border-radius: 18px; }
  .tgt-form-row { grid-template-columns: 1fr; }
}

/* Refined inner page heroes */
.page-hero {
  min-height: auto;
  align-items: center;
  padding: 54px 24px 58px;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 24%, rgba(6,182,212,.12), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(37,99,235,.14), transparent 36%),
    linear-gradient(135deg, #07101e 0%, #0b1324 58%, #07101a 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: max(24px, calc((100vw - 1200px) / 2 + 24px));
  width: min(31vw, 410px);
  height: min(58%, 300px);
  min-height: 210px;
  border: 1px solid rgba(96,165,250,.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(135deg, rgba(96,165,250,.10) 0 1px, transparent 1px 18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 90px rgba(0,0,0,.22);
  opacity: .9;
  transform: translateY(-50%) skewY(-2deg);
  pointer-events: none;
  z-index: 0;
}
.page-hero.has-hero-image::after {
  display: none;
}
.page-hero-media {
  position: absolute;
  top: 50%;
  right: max(24px, calc((100vw - 1200px) / 2 + 24px));
  width: min(38vw, 500px);
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(96,165,250,.18);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(7,20,38,.96), rgba(11,39,72,.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 90px rgba(0,0,0,.26);
  transform: translateY(-50%);
  z-index: 1;
}
.page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,8,15,.02), rgba(5,8,15,.18));
  pointer-events: none;
}
.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.page-hero-grid {
  opacity: .55;
}
.page-hero-glow {
  opacity: .82;
}
.page-hero > .wrap {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
.page-hero .breadcrumb {
  margin-bottom: 18px;
  font-size: .8rem;
  color: var(--c-muted2);
}
.page-hero .eyebrow {
  margin-bottom: 16px;
  background: rgba(6,182,212,.12);
  border-color: rgba(6,182,212,.28);
}
.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.page-hero p {
  max-width: 650px;
  font-size: 1rem !important;
  line-height: 1.75;
  color: #a8c3e8 !important;
}
.page-hero-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37,99,235,.20), rgba(6,182,212,.12));
  border: 1px solid rgba(96,165,250,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 45px rgba(0,0,0,.18);
}
.page-hero .svc-tags {
  max-width: 760px;
}
.page-hero .svc-tag {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.11);
}
.page-hero .btn-lg {
  padding: 14px 28px;
  font-size: .95rem;
}

@media (min-width: 901px) {
  .page-hero > .wrap {
    padding-right: 24px;
  }
  .page-hero h1 {
    max-width: 620px;
  }
  .page-hero p,
  .page-hero .svc-tags {
    max-width: 560px;
  }
  .page-hero .breadcrumb,
  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero p,
  .page-hero .svc-tags,
  .page-hero .btn {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 900px) {
  .page-hero {
    padding: 46px 24px 54px;
  }
  .page-hero::after {
    display: none;
  }
  .page-hero-media {
    display: none;
  }
  .contact-page-hero .page-hero-media {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 520px);
    margin: 28px auto 0;
    transform: none;
  }
  .page-hero-grid {
    mask-image: none;
  }
  .page-hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 36px 18px 44px;
  }
  .page-hero .breadcrumb {
    margin-bottom: 18px;
  }
  .page-hero h1 {
    font-size: 2.15rem;
    line-height: 1.08;
  }
  .page-hero p {
    font-size: .98rem !important;
  }
  .page-hero-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    font-size: 1.8rem;
  }
  .page-hero .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* Homepage capabilities: stronger cards and visible section CTA */
body.home .section:first-of-type .svc-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,250,253,.96)),
    radial-gradient(circle at 88% 0%, rgba(45,212,191,.22), transparent 34%);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 18px 48px rgba(15,23,42,.10);
}
body.home .section:first-of-type .svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
}
body.home .section:first-of-type .svc-card:hover {
  border-color: rgba(20,184,166,.55);
  box-shadow: 0 26px 72px rgba(15,23,42,.16), 0 0 0 1px rgba(20,184,166,.10);
}
body.home .section:first-of-type .svc-icon {
  background: linear-gradient(135deg, #d8fbf8, #e8f1ff);
  border: 1px solid rgba(20,184,166,.18);
  box-shadow: 0 12px 26px rgba(20,184,166,.14);
}
body.home .section:first-of-type .svc-tag {
  background: #e9fbf9;
  border-color: #aeece7;
  color: #08766f;
}
body.home .home-section-cta > .btn-outline.btn-lg {
  background: linear-gradient(135deg, #0f766e, #2563eb);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 42px rgba(37,99,235,.24);
}
body.home .home-section-cta > .btn-outline.btn-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(15,118,110,.28);
}

/* Logo-matched blue/cyan palette pass */
body.home {
  background: #f3f8fc;
}
body.home .hero-slider {
  background: #071426;
}
body.home .hero-slider .hero-bg {
  background:
    radial-gradient(circle at 78% 18%, rgba(34,211,238,.22), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(11,127,232,.26), transparent 34%),
    linear-gradient(135deg, #071426 0%, #0b2748 48%, #081b33 100%);
}
body.home .hero-badge-dot,
body.home .hero-dot.is-active,
body.home .ticker-dot {
  background: #22d3ee;
  color: #071426;
}
body.home .btn-primary {
  background: linear-gradient(135deg, #0b7fe8, #22d3ee);
  color: #06101d;
  box-shadow: 0 18px 44px rgba(11,127,232,.30);
}
body.home .btn-primary:hover {
  background: linear-gradient(135deg, #1697ff, #67e8f9);
  color: #06101d;
  box-shadow: 0 20px 52px rgba(34,211,238,.30);
}
body.home .section {
  background: #f3f8fc;
}
body.home .section-alt {
  background:
    radial-gradient(circle at 86% 20%, rgba(34,211,238,.14), transparent 28%),
    linear-gradient(135deg, #071426, #0b2748);
}
body.home .eyebrow {
  color: #0b7fe8;
  background: rgba(11,127,232,.09);
  border-color: rgba(11,127,232,.18);
}
body.home .section-alt .eyebrow {
  color: #67e8f9;
  background: rgba(34,211,238,.10);
  border-color: rgba(34,211,238,.20);
}
body.home .svc-card,
body.home .ind-card,
body.home .stat-item,
body.home .testi-card {
  background:
    linear-gradient(180deg, #ffffff, #f7fbff),
    radial-gradient(circle at 88% 0%, rgba(34,211,238,.14), transparent 36%);
  border-color: rgba(11,127,232,.14);
  box-shadow: 0 20px 54px rgba(7,20,38,.10);
}
body.home .svc-card::before {
  background: linear-gradient(90deg, #0b7fe8, #22d3ee);
}
body.home .svc-card:hover,
body.home .ind-card:hover,
body.home .stat-item:hover,
body.home .testi-card:hover {
  border-color: rgba(11,127,232,.38);
  box-shadow: 0 28px 76px rgba(7,20,38,.16), 0 0 0 1px rgba(34,211,238,.12);
}
body.home .svc-icon,
body.home .ind-emoji {
  background: linear-gradient(135deg, rgba(11,127,232,.14), rgba(34,211,238,.18));
  border: 1px solid rgba(11,127,232,.13);
}
body.home .svc-tag {
  background: #edf8ff;
  border-color: #b9e4ff;
  color: #0b5e9e;
}
body.home .svc-link {
  color: #0b7fe8;
}
body.home .home-section-cta > .btn-outline.btn-lg {
  background: linear-gradient(135deg, #0b7fe8, #22d3ee);
  color: #06101d;
  box-shadow: 0 18px 44px rgba(11,127,232,.28);
}
body.home .home-section-cta > .btn-outline.btn-lg:hover {
  box-shadow: 0 24px 58px rgba(11,127,232,.34);
}

/* iGaming solution pages */
.igaming-page-hero {
  min-height: 620px;
  padding-top: 76px;
  padding-bottom: 76px;
}
.igaming-page-hero::after {
  display: none;
}
.igaming-page-hero .wrap {
  padding-right: min(44vw, 560px);
}
.ig-hero-visual {
  position: absolute;
  top: 50%;
  right: max(24px, calc((100vw - 1200px) / 2 + 24px));
  width: min(38vw, 500px);
  transform: translateY(-50%);
  z-index: 1;
}
.ig-hero-screen {
  border: 1px solid rgba(96,165,250,.22);
  border-radius: 24px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(17,34,58,.96), rgba(8,31,49,.94)),
    radial-gradient(circle at 85% 20%, rgba(45,212,191,.16), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 28px 90px rgba(0,0,0,.30);
}
.ig-hero-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.ig-hero-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(226,242,255,.44);
}
.ig-hero-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.ig-hero-metrics {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.ig-hero-metrics div {
  min-width: 0;
  padding: 13px 12px;
  border-radius: 14px;
  background: rgba(2,6,23,.28);
  border: 1px solid rgba(255,255,255,.10);
}
.ig-hero-metrics strong {
  display: block;
  color: #36e0d0;
  font-family: var(--f-display);
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.05;
}
.ig-hero-metrics span {
  display: block;
  margin-top: 5px;
  color: #a8c3e8;
  font-size: .72rem;
  font-weight: 700;
}
.ig-hero-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.ig-hero-grid-cards span,
.ig-hero-feed span {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: #dbeafe;
  font-weight: 700;
  font-size: .82rem;
}
.ig-hero-meter {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(2,6,23,.42);
  margin-bottom: 14px;
}
.ig-hero-meter span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--c-blue), var(--c-teal));
}
.ig-hero-feed {
  display: grid;
  gap: 8px;
}
.ig-page-content {
  display: grid;
  gap: 34px;
}
.ig-section-card {
  border: 1px solid rgba(96,165,250,.18);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(15,36,62,.92), rgba(9,25,44,.92)),
    radial-gradient(circle at 90% 0%, rgba(34,211,238,.10), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.ig-section-card.is-light {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,248,255,.96));
  border-color: rgba(15,74,132,.12);
  color: #0f172a;
}
.ig-section-card.is-light h2,
.ig-section-card.is-light h3,
.ig-section-card.is-light .ig-card-title {
  color: #0f172a;
}
.ig-section-card.is-light p,
.ig-section-card.is-light li,
.ig-section-card.is-light .ig-card-text {
  color: #475569;
}
.ig-section-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.ig-section-card p {
  color: var(--c-muted2);
  line-height: 1.85;
  margin-bottom: 14px;
}
.ig-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.ig-feature-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(96,165,250,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}
.ig-section-card.is-light .ig-feature-card {
  background: rgba(255,255,255,.72);
  border-color: rgba(15,74,132,.12);
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}
.ig-card-title {
  color: #fff;
  font-weight: 800;
  margin-bottom: 8px;
}
.ig-card-text {
  color: var(--c-muted2);
  font-size: .92rem;
  line-height: 1.75;
}
.ig-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  counter-reset: ig-step;
}
.ig-process-step {
  padding: 22px;
  border-radius: 18px;
  background: rgba(6,182,212,.08);
  border: 1px solid rgba(6,182,212,.18);
  counter-increment: ig-step;
}
.ig-process-step::before {
  content: counter(ig-step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-teal));
  color: #fff;
  font-family: var(--f-mono);
  font-weight: 800;
  font-size: .78rem;
}
.ig-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.ig-faq-item {
  border: 1px solid rgba(96,165,250,.16);
  border-radius: 16px;
  padding: 20px 22px;
  background: rgba(255,255,255,.055);
}
.ig-faq-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.ig-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.ig-text-panel {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(96,165,250,.16);
  background: rgba(255,255,255,.055);
}
.ig-section-card.is-light .ig-text-panel {
  background: rgba(255,255,255,.72);
  border-color: rgba(15,74,132,.12);
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}
.ig-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.ig-list li {
  position: relative;
  padding-left: 22px;
  color: var(--c-muted2);
  line-height: 1.7;
}
.ig-list li::before {
  content: '';
  position: absolute;
  top: .75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-teal));
}
.ig-section-card.is-light .ig-list li {
  color: #475569;
}
.ig-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.ig-related-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34,211,238,.24);
  background: rgba(6,182,212,.08);
  color: #7dd3fc;
  font-weight: 800;
  font-size: .84rem;
}
.ig-section-card.is-light .ig-related-links a {
  color: #0b5e9e;
  background: #edf8ff;
  border-color: #b9e4ff;
}
.ig-related-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(34,211,238,.44);
}
.ig-cta-card {
  text-align: center;
}
.ig-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .igaming-page-hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .igaming-page-hero .wrap {
    padding-right: 0;
  }
  .ig-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 520px);
    transform: none;
    margin: 34px auto 0;
  }
  .ig-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ig-two-col {
    grid-template-columns: 1fr;
  }
  .ig-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .ig-feature-grid,
  .ig-process-list,
  .ig-hero-grid-cards,
  .ig-hero-metrics {
    grid-template-columns: 1fr;
  }
  .ig-section-card {
    border-radius: 18px;
  }
}
