/* ═══════════════════════════ ROOT ═══════════════════════════ */
:root {
  --bg:       #020812;
  --bg2:      #060d1f;
  --bg3:      #0a1628;
  --bg4:      #0d1e36;
  --e:        #00d9ff;
  --e2:       #00ffd1;
  --e3:       #4fc3f7;
  --w:        #ffffff;
  --g:        #7a8bad;
  --g2:       #4a5a6e;
  --border:   rgba(0,217,255,.12);
  --border2:  rgba(255,255,255,.06);
  --glow:     0 0 30px rgba(0,217,255,.2);
  --glow2:    0 0 60px rgba(0,217,255,.15);
  --fh:       'Orbitron', sans-serif;
  --fs:       'Rajdhani', sans-serif;
  --fb:       'Inter', sans-serif;
  --ease:     cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--e), var(--e2)); border-radius: 2px; }
::selection { background: rgba(0,217,255,.25); }

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--w);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ═══════════════════════════ CUSTOM CURSOR ═══════════════════════════ */
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--e);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
  mix-blend-mode: screen;
}
#cur-r {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0,217,255,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform .12s var(--ease), width .25s, height .25s;
}
body.cursor-hover #cur { width: 20px; height: 20px; }
body.cursor-hover #cur-r { width: 48px; height: 48px; border-color: var(--e); }

/* ═══════════════════════════ SCROLL PROGRESS ═══════════════════════════ */
#sp {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--e), var(--e2));
  z-index: 9999;
  width: 0%;
  box-shadow: 0 0 8px var(--e);
  transition: width .1s;
}

/* ═══════════════════════════ NAVBAR ═══════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: rgba(2,8,18,.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  transition: all .3s var(--ease);
}
.nav.scrolled {
  height: 58px;
  background: rgba(2,8,18,.95);
  border-bottom-color: var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--w);
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--e), var(--e2));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 18px rgba(0,217,255,.4);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.2));
}
.logo-name {
  font-family: var(--fh);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
}
.logo-sub {
  font-family: var(--fs);
  font-size: .6rem;
  color: var(--e);
  letter-spacing: .15em;
  margin-top: 2px;
}
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: .15rem;
}
.nav-links a {
  font-family: var(--fs);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--g);
  padding: .5rem .95rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
  position: relative;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--e);
  background: rgba(0,217,255,.06);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 2px;
  background: var(--e);
  border-radius: 1px;
  box-shadow: 0 0 6px var(--e);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fs);
  font-size: .72rem;
  color: var(--g);
  letter-spacing: .06em;
}
.live-dot {
  width: 6px; height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff88;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}
.btn-nav {
  font-family: var(--fh);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--e);
  border: 1px solid var(--e);
  padding: .55rem 1.3rem;
  border-radius: 6px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: none;
  display: inline-block;
  text-decoration: none;
}
.btn-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--e);
  transform: translateX(-101%);
  transition: transform .3s var(--ease);
}
.btn-nav span { position: relative; z-index: 1; }
.btn-nav:hover::before { transform: translateX(0); }
.btn-nav:hover { color: var(--bg); box-shadow: var(--glow); }

/* HAMBURGER */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.ham span {
  display: block;
  width: 22px; height: 2px;
  background: var(--w);
  border-radius: 1px;
  transition: .3s;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mob-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(2,8,18,.98);
  backdrop-filter: blur(24px);
  padding: 1.5rem 5%;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.mob-nav.open {
  display: block;
  animation: slideDown .3s var(--ease);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mob-nav a {
  display: block;
  padding: .8rem 0;
  font-family: var(--fs);
  font-size: 1rem;
  color: var(--g);
  border-bottom: 1px solid var(--border2);
  transition: color .2s;
  text-decoration: none;
}
.mob-nav a:hover { color: var(--e); }
.mob-nav .btn-nav { display: inline-block; margin-top: 1.2rem; }

/* ═══════════════════════════ BUTTONS ═══════════════════════════ */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--e), var(--e2));
  color: var(--bg);
  font-family: var(--fh);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: none;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-p::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity .3s;
}
.btn-p:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,217,255,.4); }
.btn-p:hover::after { opacity: 1; }

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--w);
  font-family: var(--fs);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .85rem 2rem;
  border-radius: 6px;
  border: 1px solid var(--border2);
  cursor: none;
  transition: all .3s var(--ease);
  text-decoration: none;
}
.btn-s:hover { border-color: var(--e); color: var(--e); background: rgba(0,217,255,.05); }

.btn-e {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--e);
  font-family: var(--fh);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .7rem 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--e);
  cursor: none;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-e::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--e);
  transform: translateX(-101%);
  transition: transform .3s var(--ease);
}
.btn-e span { position: relative; z-index: 1; }
.btn-e:hover::before { transform: translateX(0); }
.btn-e:hover { color: var(--bg); box-shadow: var(--glow); }

/* ═══════════════════════════ LAYOUT ═══════════════════════════ */
.section { padding: 110px 5%; }
.section-sm { padding: 70px 5%; }
.container { max-width: 1240px; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--e);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--e);
  box-shadow: 0 0 6px var(--e);
}

.h1 {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.h2 {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
}
.grad {
  background: linear-gradient(135deg, var(--e) 0%, var(--e2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  font-size: 1.05rem;
  color: var(--g);
  line-height: 1.85;
  max-width: 540px;
}
.center { text-align: center; }
.center .lead { margin: 0 auto; }

/* ═══════════════════════════ REVEAL ANIMATIONS ═══════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.rv.in { opacity: 1; transform: translateY(0); }

.rvl {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.rvl.in { opacity: 1; transform: translateX(0); }

.rvr {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.rvr.in { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }

/* ═══════════════════════════ GLASS CARD ═══════════════════════════ */
.card {
  background: rgba(10,22,40,.65);
  border: 1px solid var(--border2);
  border-radius: 16px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--e), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-7px);
  box-shadow: 0 22px 60px rgba(0,0,0,.4), var(--glow);
}
.card:hover::before { opacity: 1; }

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  overflow: hidden;
}
#c {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,217,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,255,.025) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black, transparent);
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: -250px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(0,217,255,.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-r {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,255,209,.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0,217,255,.07);
  border: 1px solid rgba(0,217,255,.22);
  border-radius: 100px;
  padding: .42rem 1rem;
  font-family: var(--fs);
  font-size: .78rem;
  font-weight: 600;
  color: var(--e);
  letter-spacing: .07em;
  margin-bottom: 1.8rem;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,217,255,0); }
  50% { box-shadow: 0 0 18px rgba(0,217,255,.2); }
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--e);
  border-radius: 50%;
  animation: livePulse 2s infinite;
}
.hero-title { margin-bottom: 1.5rem; }
.hero-t1 {
  display: block;
  font-family: var(--fh);
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--w);
}
.hero-t2 {
  display: block;
  font-family: var(--fh);
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 900;
  line-height: 1.0;
  background: linear-gradient(135deg, var(--e) 0%, var(--e2) 60%, var(--e3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--g);
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border2);
}
.hs-val {
  font-family: var(--fh);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--w);
  line-height: 1;
}
.hs-val .e { color: var(--e); }
.hs-lbl {
  font-family: var(--fs);
  font-size: .75rem;
  color: var(--g);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* HERO DEVICE */
.hero-device {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), var(--glow);
  animation: deviceFloat 4s ease-in-out infinite;
}
@keyframes deviceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.dev-header {
  padding: 13px 16px;
  background: rgba(0,217,255,.04);
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dev-dots { display: flex; gap: 5px; }
.dev-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dev-dots span:nth-child(1) { background: #ff5f57; }
.dev-dots span:nth-child(2) { background: #ffbd2e; }
.dev-dots span:nth-child(3) { background: #28ca41; }
.dev-title {
  flex: 1;
  text-align: center;
  font-family: var(--fs);
  font-size: .72rem;
  color: var(--g);
  letter-spacing: .07em;
}
.dev-body { padding: 18px; }
.m-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border2);
}
.m-row:last-child { border: 0; }
.m-name { font-family: var(--fs); font-size: .78rem; color: var(--g); }
.m-val { font-family: var(--fh); font-size: .78rem; font-weight: 700; color: var(--e); }
.m-bar {
  height: 3px;
  background: rgba(0,217,255,.1);
  border-radius: 2px;
  margin: 7px 0;
  overflow: hidden;
}
.m-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--e), var(--e2));
  border-radius: 2px;
  width: 0%;
  transition: width 1.5s var(--ease);
}
.dev-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,255,209,.07);
  border: 1px solid rgba(0,255,209,.18);
  border-radius: 100px;
  padding: 4px 10px;
  font-family: var(--fs);
  font-size: .68rem;
  color: var(--e2);
  margin-top: 12px;
}

/* ═══════════════════════════ TICKER ═══════════════════════════ */
.ticker {
  padding: 18px 0;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  overflow: hidden;
  background: rgba(10,22,40,.4);
}
.ticker-track {
  display: flex;
  gap: 3.5rem;
  animation: tick 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tick {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--fs);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  opacity: .3;
  filter: grayscale(1);
  transition: opacity .3s, filter .3s;
}
.ticker-item:hover { opacity: .8; filter: grayscale(0); }

/* ═══════════════════════════ SERVICES GRID ═══════════════════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.svc-card { padding: 2rem; cursor: none; }
.svc-icon {
  width: 50px; height: 50px;
  background: rgba(0,217,255,.08);
  border: 1px solid rgba(0,217,255,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.3rem;
  transition: all .3s var(--ease);
}
.svc-card:hover .svc-icon {
  background: rgba(0,217,255,.15);
  border-color: var(--e);
  box-shadow: 0 0 18px rgba(0,217,255,.2);
  transform: scale(1.1);
}
.svc-card h3 { font-family: var(--fs); font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.svc-card p { font-size: .88rem; color: var(--g); line-height: 1.7; }
.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--fs);
  font-size: .8rem;
  font-weight: 600;
  color: var(--e);
  margin-top: 1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .3s var(--ease);
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════ WHY US ═══════════════════════════ */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ring-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,217,255,.18);
}
.r1 { width: 340px; height: 340px; animation: spin 18s linear infinite; }
.r2 { width: 250px; height: 250px; animation: spin 12s linear infinite reverse; border-style: dashed; }
.r3 { width: 160px; height: 160px; animation: spin 7s linear infinite; }
@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
.r1::after, .r2::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--e);
  border-radius: 50%;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--e);
}
.ring-core {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--e), var(--e2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 40px rgba(0,217,255,.4);
  z-index: 1;
}
.why-items { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(10,22,40,.5);
  border: 1px solid var(--border2);
  transition: all .3s var(--ease);
}
.why-item:hover { border-color: var(--border); background: rgba(0,217,255,.04); }
.why-num {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--e);
  opacity: .25;
  flex-shrink: 0;
  line-height: 1;
}
.why-item h4 { font-family: var(--fs); font-size: .95rem; font-weight: 700; margin-bottom: .35rem; }
.why-item p { font-size: .85rem; color: var(--g); line-height: 1.65; }

/* ═══════════════════════════ PROCESS ═══════════════════════════ */
.proc-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 4rem;
}
.proc-wrap::before {
  content: '';
  position: absolute;
  top: 35px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--e), transparent);
  opacity: .4;
}
.proc-step { padding: 1rem; text-align: center; cursor: none; }
.proc-num {
  width: 70px; height: 70px;
  background: var(--bg3);
  border: 2px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--g);
  margin: 0 auto 1.5rem;
  transition: all .35s var(--ease);
  position: relative;
  z-index: 1;
}
.proc-step.active .proc-num,
.proc-step:hover .proc-num {
  background: linear-gradient(135deg, var(--e), var(--e2));
  border-color: transparent;
  color: var(--bg);
  box-shadow: 0 0 28px rgba(0,217,255,.5);
}
.proc-step h3 { font-family: var(--fs); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.proc-detail {
  font-size: .83rem;
  color: var(--g);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.proc-step.active .proc-detail { max-height: 200px; }

/* ═══════════════════════════ TESTIMONIALS ═══════════════════════════ */
.testi-section { background: var(--bg2); position: relative; overflow: hidden; }
.testi-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,217,255,.05), transparent 70%);
  border-radius: 50%;
}
.testi-carousel { position: relative; overflow: hidden; margin-top: 3rem; }
.testi-track {
  display: flex;
  transition: transform .6s var(--ease);
}
.testi-slide { flex: 0 0 100%; padding: 0 5%; }
.testi-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: rgba(10,22,40,.7);
  border: 1px solid var(--border2);
  border-radius: 18px;
  padding: 3rem;
}
.qmark {
  font-size: 5rem;
  color: var(--e);
  opacity: .2;
  font-family: Georgia, serif;
  line-height: .4;
  margin-bottom: 1.5rem;
}
.testi-q {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.ta-av {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--e), var(--e2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 800;
  color: var(--bg);
  font-size: 1.1rem;
}
.ta-name { font-family: var(--fs); font-size: .95rem; font-weight: 700; }
.ta-role { font-size: .78rem; color: var(--g); }
.ta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,217,255,.09);
  border: 1px solid rgba(0,217,255,.18);
  color: var(--e);
  padding: .25rem .7rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  margin-top: .4rem;
}
.testi-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.tc-btn {
  width: 42px; height: 42px;
  background: rgba(10,22,40,.7);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w);
  cursor: none;
  transition: all .3s var(--ease);
  font-size: .9rem;
}
.tc-btn:hover { border-color: var(--e); color: var(--e); }
.tc-dots { display: flex; gap: 7px; }
.tc-dot {
  width: 7px; height: 7px;
  background: var(--border2);
  border-radius: 50%;
  cursor: none;
  transition: all .3s;
}
.tc-dot.active { background: var(--e); width: 22px; border-radius: 4px; }

/* ═══════════════════════════ CTA BAND ═══════════════════════════ */
.cta-band { position: relative; overflow: hidden; text-align: center; background: var(--bg2); }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 7s ease-in-out infinite;
}
.orb1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(0,217,255,.1), transparent);
  top: -220px; left: -220px;
}
.orb2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,255,209,.08), transparent);
  bottom: -180px; right: -180px;
  animation-delay: -3.5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(25px,-25px) scale(1.08); }
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-band p { color: var(--g); margin: 1.2rem auto 2.5rem; max-width: 500px; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border2);
  padding: 60px 5% 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.foot-brand p { color: var(--g); font-size: .87rem; line-height: 1.8; margin: 1rem 0 1.5rem; }
.socials { display: flex; gap: 9px; }
.social-a {
  width: 36px; height: 36px;
  background: rgba(10,22,40,.8);
  border: 1px solid var(--border2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
  font-size: .82rem;
  transition: all .3s var(--ease);
  text-decoration: none;
}
.social-a:hover { border-color: var(--e); color: var(--e); background: rgba(0,217,255,.08); }
.foot-col h4 { font-family: var(--fs); font-size: .88rem; font-weight: 700; margin-bottom: 1.2rem; letter-spacing: .04em; }
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: .55rem; }
.foot-col ul a { font-size: .85rem; color: var(--g); transition: color .2s; text-decoration: none; }
.foot-col ul a:hover { color: var(--e); }
.nl-form { display: flex; gap: 7px; margin-top: .9rem; }
.nl-form input {
  flex: 1;
  background: rgba(10,22,40,.8);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: .62rem .95rem;
  color: var(--w);
  font-family: var(--fb);
  font-size: .83rem;
  outline: none;
  transition: border-color .3s;
}
.nl-form input:focus { border-color: var(--e); }
.nl-form input::placeholder { color: var(--g2); }
.nl-form button {
  background: var(--e);
  border: none;
  color: var(--bg);
  padding: .62rem .95rem;
  border-radius: 6px;
  cursor: none;
  font-family: var(--fh);
  font-size: .7rem;
  font-weight: 700;
  transition: all .3s var(--ease);
}
.nl-form button:hover { box-shadow: 0 0 18px rgba(0,217,255,.4); }
.foot-bottom {
  border-top: 1px solid var(--border2);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--g2);
  flex-wrap: wrap;
  gap: .8rem;
}

/* BACK TO TOP */
#btt {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--e), var(--e2));
  color: var(--bg);
  border: none;
  border-radius: 50%;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all .35s var(--ease);
  z-index: 900;
  box-shadow: 0 4px 18px rgba(0,217,255,.35);
}
#btt.show { opacity: 1; transform: translateY(0); }
#btt:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,217,255,.5); }

/* ═══════════════════════════ PAGE HERO ═══════════════════════════ */
.page-hero {
  padding: 150px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 600px;
  background: radial-gradient(circle, rgba(0,217,255,.07), transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,217,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,255,.02) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.page-hero .content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--fs);
  font-size: .8rem;
  color: var(--g);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--e); }
.breadcrumb span { color: var(--g2); }

/* ═══════════════════════════ ACCORDION ═══════════════════════════ */
.acc-list { max-width: 880px; margin: 0 auto; }
.acc-item {
  background: rgba(10,22,40,.65);
  border: 1px solid var(--border2);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color .3s;
}
.acc-item:hover { border-color: rgba(0,217,255,.15); }
.acc-item.open { border-color: rgba(0,217,255,.28); }
.acc-hdr {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  cursor: none;
  user-select: none;
}
.acc-icon {
  width: 46px; height: 46px;
  background: rgba(0,217,255,.07);
  border: 1px solid rgba(0,217,255,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all .3s var(--ease);
}
.acc-item.open .acc-icon {
  background: rgba(0,217,255,.15);
  border-color: var(--e);
  box-shadow: 0 0 14px rgba(0,217,255,.2);
}
.acc-title { flex: 1; }
.acc-title h3 { font-family: var(--fs); font-size: 1rem; font-weight: 700; }
.acc-stat {
  background: rgba(0,217,255,.07);
  border: 1px solid rgba(0,217,255,.14);
  color: var(--e);
  font-size: .72rem;
  font-weight: 700;
  padding: .22rem .6rem;
  border-radius: 100px;
  font-family: var(--fh);
}
.acc-tog {
  width: 30px; height: 30px;
  background: rgba(10,22,40,.8);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
  font-size: .9rem;
  transition: all .35s var(--ease);
  flex-shrink: 0;
}
.acc-item.open .acc-tog {
  background: var(--e);
  color: var(--bg);
  border-color: var(--e);
  transform: rotate(45deg);
}
.acc-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-item.open .acc-body { max-height: 500px; }
.acc-content { padding: 0 1.5rem 1.5rem; border-top: 1px solid var(--border2); }
.acc-content p { color: var(--g); font-size: .88rem; line-height: 1.8; margin: 1rem 0; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; margin: 1rem 0 1.5rem; }
.feat-item { display: flex; align-items: center; gap: 7px; font-size: .83rem; color: var(--g); }
.feat-item::before { content: '✓'; color: var(--e); font-weight: 700; flex-shrink: 0; }

/* ═══════════════════════════ ABOUT ═══════════════════════════ */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.as-card {
  text-align: center;
  padding: 2rem;
  background: rgba(10,22,40,.65);
  border: 1px solid var(--border2);
  border-radius: 14px;
}
.as-num { font-family: var(--fh); font-size: 2.4rem; font-weight: 900; color: var(--e); line-height: 1; }
.as-lbl { font-family: var(--fs); font-size: .8rem; color: var(--g); margin-top: 7px; letter-spacing: .07em; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 3rem; }
.vals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3rem; }

/* TIMELINE */
.tl { position: relative; padding-left: 2.5rem; }
.tl::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--e), transparent);
}
.tl-item { position: relative; padding-bottom: 3rem; padding-left: 1.5rem; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -2.5rem; top: 6px;
  width: 12px; height: 12px;
  background: var(--e);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(0,217,255,.5);
  transform: translateX(-5px);
}
.tl-yr { font-size: .73rem; color: var(--e); font-weight: 700; letter-spacing: .1em; margin-bottom: .4rem; font-family: var(--fh); }
.tl-item h3 { font-family: var(--fs); font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.tl-item p { font-size: .85rem; color: var(--g); line-height: 1.7; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3rem; }
.team-card { text-align: center; padding: 2rem; }
.team-av {
  width: 78px; height: 78px;
  background: linear-gradient(135deg, var(--e), var(--e2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--bg);
  margin: 0 auto 1.2rem;
}
.team-card h3 { font-family: var(--fs); font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
.team-role { font-size: .78rem; color: var(--e); margin-bottom: .7rem; font-family: var(--fs); }
.team-bio { font-size: .8rem; color: var(--g); line-height: 1.6; margin-bottom: 1rem; }
.team-links { display: flex; gap: 7px; justify-content: center; }
.team-lnk {
  font-size: .73rem;
  color: var(--g);
  padding: .2rem .55rem;
  border: 1px solid var(--border2);
  border-radius: 4px;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.team-lnk:hover { color: var(--e); border-color: var(--e); }

/* ═══════════════════════════ CASE STUDIES ═══════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 3.5rem;
}
.sb-item { background: rgba(10,22,40,.8); padding: 2rem; text-align: center; }
.sb-val { font-family: var(--fh); font-size: 1.9rem; font-weight: 900; color: var(--e); }
.sb-lbl { font-size: .78rem; color: var(--g); margin-top: 6px; font-family: var(--fs); }

.feat-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(10,22,40,.65);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 3rem;
  margin-bottom: 3.5rem;
}
.fc-vis {
  height: 300px;
  background: linear-gradient(135deg, rgba(0,217,255,.07), rgba(0,255,209,.04));
  border: 1px solid rgba(0,217,255,.14);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.fc-body h2 { font-family: var(--fh); font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.fc-body p { font-size: .88rem; color: var(--g); line-height: 1.8; margin-bottom: 1.5rem; }
.fc-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.fc-m .v { font-family: var(--fh); font-size: 1.5rem; font-weight: 800; color: var(--e); }
.fc-m .l { font-size: .72rem; color: var(--g); margin-top: 3px; }

.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.f-btn {
  padding: .48rem 1.15rem;
  background: rgba(10,22,40,.7);
  border: 1px solid var(--border2);
  border-radius: 100px;
  color: var(--g);
  font-size: .83rem;
  font-family: var(--fs);
  cursor: none;
  transition: all .3s var(--ease);
}
.f-btn.active, .f-btn:hover { background: rgba(0,217,255,.1); border-color: var(--e); color: var(--e); }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.case-card { padding: 1.8rem; cursor: none; }
.case-tag {
  display: inline-block;
  background: rgba(0,217,255,.07);
  border: 1px solid rgba(0,217,255,.14);
  color: var(--e);
  font-size: .68rem;
  font-weight: 700;
  padding: .18rem .55rem;
  border-radius: 100px;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: .9rem;
  font-family: var(--fh);
}
.case-card h3 { font-family: var(--fs); font-size: 1rem; font-weight: 700; margin-bottom: .55rem; }
.case-card p { font-size: .85rem; color: var(--g); line-height: 1.7; margin-bottom: 1.2rem; }
.case-mets { display: flex; gap: 1.2rem; }
.case-m .mv { font-family: var(--fh); font-size: 1.2rem; font-weight: 800; color: var(--e); }
.case-m .ml { font-size: .72rem; color: var(--g); }

/* MODAL */
.modal-ov {
  position: fixed;
  inset: 0;
  background: rgba(2,8,18,.95);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-ov.on { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.92);
  transition: transform .3s var(--ease);
}
.modal-ov.on .modal-box { transform: scale(1); }
.modal-x {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  width: 34px; height: 34px;
  background: rgba(10,22,40,.9);
  border: 1px solid var(--border2);
  border-radius: 50%;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
  transition: all .25s;
}
.modal-x:hover { color: var(--w); border-color: var(--w); }
.modal-sec { margin: 1.5rem 0; }
.modal-sec h4 {
  font-family: var(--fh);
  font-size: .75rem;
  font-weight: 700;
  color: var(--e);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.modal-sec p { font-size: .88rem; color: var(--g); line-height: 1.8; }
.modal-res { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mr-item { text-align: center; }
.mr-v { font-family: var(--fh); font-size: 1.7rem; font-weight: 800; color: var(--e); }
.mr-l { font-size: .73rem; color: var(--g); margin-top: 3px; }

/* ═══════════════════════════ BLOG ═══════════════════════════ */
.blog-layout { display: grid; grid-template-columns: 1fr 310px; gap: 3rem; align-items: start; }
.search-wrap { display: flex; gap: 8px; margin-bottom: 2rem; }
.search-wrap input {
  flex: 1;
  background: rgba(10,22,40,.8);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: .7rem 1rem;
  color: var(--w);
  font-family: var(--fb);
  font-size: .88rem;
  outline: none;
  transition: border-color .3s;
}
.search-wrap input:focus { border-color: var(--e); }
.search-wrap input::placeholder { color: var(--g2); }
.search-wrap button {
  background: var(--e);
  border: none;
  border-radius: 8px;
  color: var(--bg);
  padding: .7rem 1.1rem;
  cursor: none;
  font-size: .95rem;
  transition: all .3s;
}
.search-wrap button:hover { box-shadow: 0 0 16px rgba(0,217,255,.4); }
.feat-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(10,22,40,.65);
  border: 1px solid var(--border2);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  transition: border-color .3s;
}
.feat-post:hover { border-color: var(--border); }
.fp-img {
  background: linear-gradient(135deg, var(--bg3), rgba(0,217,255,.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  min-height: 230px;
}
.fp-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.post-meta { font-size: .75rem; color: var(--g); margin-bottom: .7rem; display: flex; gap: .8rem; flex-wrap: wrap; }
.post-tag { color: var(--e); font-weight: 600; }
.fp-body h2 { font-family: var(--fs); font-size: 1.2rem; font-weight: 800; margin-bottom: .65rem; line-height: 1.3; }
.fp-body p { font-size: .85rem; color: var(--g); line-height: 1.7; margin-bottom: 1.1rem; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.bc { overflow: hidden; }
.bc-img {
  height: 155px;
  background: linear-gradient(135deg, var(--bg3), rgba(0,217,255,.04));
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
  transition: transform .4s var(--ease);
}
.bc:hover .bc-img { transform: scale(1.04); }
.bc-body { padding: 1.15rem 0 0; }
.bc-body h3 { font-family: var(--fs); font-size: .92rem; font-weight: 700; margin-bottom: .45rem; line-height: 1.4; }
.bc-body p { font-size: .8rem; color: var(--g); line-height: 1.6; }
.bc-more {
  color: var(--e);
  font-size: .78rem;
  font-weight: 600;
  margin-top: .65rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.bc:hover .bc-more { gap: 8px; }
.widget {
  background: rgba(10,22,40,.65);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 1.4rem;
  margin-bottom: 1.4rem;
}
.widget h4 { font-family: var(--fs); font-size: .88rem; font-weight: 700; margin-bottom: 1.1rem; padding-bottom: .7rem; border-bottom: 1px solid var(--border2); }
.cat-list { list-style: none; }
.cat-list li { display: flex; justify-content: space-between; align-items: center; padding: .45rem 0; border-bottom: 1px solid var(--border2); }
.cat-list li:last-child { border: 0; }
.cat-list a { font-size: .85rem; color: var(--g); transition: color .2s; text-decoration: none; }
.cat-list a:hover { color: var(--e); }
.cat-c { background: rgba(0,217,255,.07); color: var(--e); font-size: .68rem; font-weight: 700; padding: .17rem .45rem; border-radius: 100px; }
.pp { display: flex; gap: .7rem; padding: .7rem 0; border-bottom: 1px solid var(--border2); }
.pp:last-child { border: 0; }
.pp-n { font-family: var(--fh); font-size: 1.1rem; font-weight: 800; color: rgba(0,217,255,.25); flex-shrink: 0; line-height: 1.1; }
.pp-t { font-size: .8rem; line-height: 1.45; }
.pp-d { font-size: .72rem; color: var(--g); margin-top: 3px; }

/* ═══════════════════════════ CONTACT ═══════════════════════════ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.cform { background: rgba(10,22,40,.65); border: 1px solid var(--border2); border-radius: 18px; padding: 2.5rem; }
.fg { margin-bottom: 1.2rem; }
.fg label { display: block; font-size: .78rem; font-weight: 600; color: var(--g); margin-bottom: .45rem; letter-spacing: .05em; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: .72rem 1rem;
  color: var(--w);
  font-family: var(--fb);
  font-size: .88rem;
  outline: none;
  transition: all .3s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--e);
  box-shadow: 0 0 0 3px rgba(0,217,255,.07);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--g2); }
.fg select { appearance: none; cursor: none; }
.fg select option { background: var(--bg3); }
.fg textarea { resize: vertical; min-height: 115px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ferr { color: #ff6b6b; font-size: .74rem; margin-top: 3px; display: none; }
.fg.err .ferr { display: block; }
.fg.err input, .fg.err select, .fg.err textarea { border-color: #ff6b6b; }
.fsuccess { display: none; text-align: center; padding: 2rem; }
.fsuccess.show { display: block; }
.fsucc-ic {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--e), var(--e2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  box-shadow: 0 0 30px rgba(0,217,255,.4);
}
.ci-cards { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.ci-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(10,22,40,.65);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 1.1rem;
  cursor: none;
  transition: all .3s var(--ease);
}
.ci-card:hover { border-color: var(--border); }
.ci-ic { width: 44px; height: 44px; background: rgba(0,217,255,.07); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ci-card h4 { font-family: var(--fs); font-size: .83rem; font-weight: 700; margin-bottom: .2rem; }
.ci-card p { font-size: .82rem; color: var(--g); }
.resp-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,217,255,.05);
  border: 1px solid rgba(0,217,255,.14);
  padding: .7rem 1.2rem;
  border-radius: 100px;
  font-size: .83rem;
  color: var(--e);
  font-weight: 600;
  margin-bottom: 2rem;
}
.faq-item { background: rgba(10,22,40,.65); border: 1px solid var(--border2); border-radius: 10px; margin-bottom: .7rem; overflow: hidden; }
.faq-hdr { display: flex; justify-content: space-between; align-items: center; padding: 1.05rem 1.2rem; cursor: none; }
.faq-hdr h4 { font-size: .9rem; font-weight: 600; }
.faq-plus { color: var(--g); font-size: 1.1rem; transition: transform .3s; }
.faq-item.open .faq-plus { transform: rotate(45deg); color: var(--e); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-body { max-height: 200px; }
.faq-body p { padding: 0 1.2rem 1.2rem; font-size: .85rem; color: var(--g); line-height: 1.8; border-top: 1px solid var(--border2); padding-top: .9rem; }

/* ═══════════════════════════ FLOATING CHAT ═══════════════════════════ */
#chat-btn {
  position: fixed;
  bottom: 2rem; left: 2rem;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--e), var(--e2));
  border-radius: 50%;
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0,217,255,.4);
  z-index: 900;
  transition: all .35s var(--ease);
  animation: chatPulse 3s ease-in-out infinite;
}
#chat-btn:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 30px rgba(0,217,255,.5); }
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,217,255,.4); }
  50% { box-shadow: 0 4px 35px rgba(0,217,255,.7); }
}
.chat-bubble {
  position: fixed;
  bottom: 5.5rem; left: 2rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  max-width: 220px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all .3s var(--ease);
  z-index: 899;
  font-size: .82rem;
  color: var(--g);
  line-height: 1.5;
}
.chat-bubble.show { opacity: 1; transform: translateY(0); }
.chat-bubble strong { color: var(--e); }

/* ═══════════════════════════ MOBILE STICKY CTA ═══════════════════════════ */
.mob-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(6,13,31,.97);
  border-top: 1px solid var(--border);
  padding: .75rem 5%;
  z-index: 800;
}
.mob-cta .btn-p { width: 100%; justify-content: center; }

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-wrap { grid-template-columns: 1fr; }
  .ring-wrap { display: none; }
  .proc-wrap { grid-template-columns: 1fr 1fr; }
  .proc-wrap::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .team-grid, .vals-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .feat-case { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  #cur, #cur-r { display: none; }
  .nav-links { display: none; }
  .nav-right .live-badge { display: none; }
  .btn-nav { display: none; }
  .ham { display: flex; }
  .section { padding: 70px 5%; }
  .hero { padding: 90px 5% 50px; }
  .hero-stats { gap: 1.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .proc-wrap { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .contact-wrap { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .feat-post { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .mob-cta { display: block; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .modal-res { grid-template-columns: 1fr 1fr; }
  .hero-t1, .hero-t2 { font-size: 2.4rem; }
  .vals-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════ BUILD GRID ═══════════════════════════ */
.build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.build-card {
  background: rgba(10,22,40,.65);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 2rem;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.build-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--e), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.build-card:hover {
  border-color: var(--border);
  transform: translateY(-7px);
  box-shadow: 0 22px 60px rgba(0,0,0,.4), var(--glow);
}
.build-card:hover::before { opacity: 1; }
.build-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.build-card h3 {
  font-family: var(--fs);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--w);
}
.build-card ul {
  list-style: none;
  padding: 0;
}
.build-card ul li {
  font-size: .83rem;
  color: var(--g);
  padding: .3rem 0;
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.build-card ul li:last-child { border: 0; }
.build-card ul li::before {
  content: '→';
  color: var(--e);
  font-size: .7rem;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .build-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .build-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════ WHAT WE BUILD CARDS ═══════════════════════════ */
.wbuild-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.wbuild-card {
  background: rgba(10,22,40,.65);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.wbuild-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--e), var(--e2));
  opacity: 0;
  transition: opacity .35s;
}
.wbuild-card.active,
.wbuild-card:hover {
  border-color: rgba(0,217,255,.25);
  background: rgba(0,217,255,.05);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3), var(--glow);
}
.wbuild-card.active::before,
.wbuild-card:hover::before { opacity: 1; }

.wbuild-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.wbuild-num {
  font-family: var(--fh);
  font-size: .7rem;
  font-weight: 700;
  color: var(--g2);
  letter-spacing: .1em;
}
.wbuild-card.active .wbuild-num { color: var(--e); }
.wbuild-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all .35s var(--ease);
}
.wbuild-icon-wrap.active,
.wbuild-card:hover .wbuild-icon-wrap {
  background: linear-gradient(135deg, var(--e), var(--e2));
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0,217,255,.4);
}
.wbuild-card h3 {
  font-family: var(--fs);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--w);
}
.wbuild-card p {
  font-size: .83rem;
  color: var(--g);
  line-height: 1.7;
  margin-bottom: 1.3rem;
}
.wbuild-tags {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border2);
}
.wbuild-tag {
  font-size: .78rem;
  color: var(--g);
  display: flex;
  align-items: center;
  gap: 6px;
}
.wbuild-tag::first-letter { color: var(--e); }
.wbuild-card.active .wbuild-tag,
.wbuild-card:hover .wbuild-tag { color: rgba(255,255,255,.75); }

@media (max-width: 1100px) {
  .wbuild-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .wbuild-grid { grid-template-columns: 1fr; }
}