/* ================================================
   TRANSFORMEZ INFOTECH — LIGHT THEME
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --bg-0:        #eef5fb;
  --bg-1:        #e4eff8;
  --bg-2:        #ffffff;
  --bg-card:     rgba(255,255,255,0.75);
  --bg-card-hover: rgba(255,255,255,0.95);

  /* Cyan accent (darker for light-bg contrast) */
  --cyan:        #007aad;
  --cyan-bright: #00b8d9;
  --cyan-dim:    rgba(0,122,173,0.75);
  --cyan-faint:  rgba(0,122,173,0.07);
  --cyan-glow:   rgba(0,122,173,0.18);
  --cyan-mid:    #0096c7;
  --cyan-dark:   #005f80;

  /* Borders */
  --border:        rgba(0,122,173,0.13);
  --border-mid:    rgba(0,122,173,0.25);
  --border-strong: rgba(0,122,173,0.55);

  /* Text */
  --text:       #0c1929;
  --text-muted: rgba(12,25,41,0.58);
  --text-dim:   rgba(12,25,41,0.35);

  /* Shadows / Glow */
  --glow-sm:   0 0 14px rgba(0,122,173,0.18);
  --glow-md:   0 0 28px rgba(0,122,173,0.2), 0 0 56px rgba(0,122,173,0.08);
  --glow-lg:   0 0 48px rgba(0,122,173,0.18), 0 0 96px rgba(0,122,173,0.07);
  --glow-text: 0 0 10px rgba(0,122,173,0.25);

  /* Shadow (card depth for light theme) */
  --shadow-card: 0 2px 16px rgba(12,25,41,0.08), 0 1px 4px rgba(12,25,41,0.05);
  --shadow-hover: 0 8px 32px rgba(12,25,41,0.12), 0 2px 8px rgba(12,25,41,0.06);

  /* Type */
  --font-logo: 'Exo 2', sans-serif;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius:    4px;
  --radius-md: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Base --- */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
::selection { background: rgba(0,122,173,0.15); color: var(--text); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Noise overlay — subtle paper texture */
.noise-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ================================================
   LOGO SYSTEM
   ================================================ */

/* ── Wordmark base — all sizes ── */
.logo-wordmark,
.logo-wordmark-lg,
.logo-wordmark-sm,
.logo-wordmark-contact {
  display: inline-flex;
  align-items: baseline;
  position: relative;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}
.logo-wordmark         { font-size: 1.2rem; }
.logo-wordmark-lg      { font-size: clamp(2.8rem, 7vw, 5.2rem); }
.logo-wordmark-sm      { font-size: 1.8rem; }
.logo-wordmark-contact { font-size: 1.5rem; }

/* ── Default colours (nav / footer on light bg) ── */
.wm-trans { color: var(--text); }
.wm-forme { color: var(--text); }
.wm-zee   { color: var(--cyan); text-shadow: 0 0 10px rgba(0,122,173,0.5); }

/* Nav logo on dark hero — force white until scrolled */
.nav-logo .wm-trans,
.nav-logo .wm-forme { color: #ffffff; }
.nav-logo .wm-zee   { color: #00eeff; text-shadow: 0 0 12px rgba(0,238,255,0.7); }
.nav.scrolled .nav-logo .wm-trans,
.nav.scrolled .nav-logo .wm-forme { color: var(--text); }
.nav.scrolled .nav-logo .wm-zee   { color: var(--cyan); text-shadow: 0 0 10px rgba(0,122,173,0.5); }

/* ════════════════════════════════════════════════════
   LOGO CARD — forced dark, always looks like the image
   ════════════════════════════════════════════════════ */
.logo-card {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.8rem, 3.5vw, 2.8rem) clamp(3rem, 7vw, 6rem);
  background: linear-gradient(155deg, #0f1e2d 0%, #091419 55%, #050c12 100%);
  border: 1px solid rgba(0,235,255,0.22);
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(0,235,255,0.07),
    0 0 50px rgba(0,235,255,0.12),
    0 0 100px rgba(0,235,255,0.05),
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 0 80px rgba(0,235,255,0.03);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

/* Bottom centre ambient glow — key visual from the reference */
.logo-card::before {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 80px;
  background: radial-gradient(ellipse at center, rgba(0,235,255,0.22) 0%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
}
/* Top-left subtle highlight */
.logo-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 10%, rgba(0,235,255,0.3) 50%, transparent 90%);
  z-index: 0;
}

/* Pulsing outer ring */
.logo-glow-ring {
  position: absolute; inset: -1px; border-radius: 11px;
  border: 1px solid rgba(0,235,255,0.15);
  pointer-events: none; z-index: 0;
  animation: ring-pulse 3.5s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%,100% { box-shadow: 0 0 14px rgba(0,235,255,0.1); }
  50%      { box-shadow: 0 0 32px rgba(0,235,255,0.28), 0 0 64px rgba(0,235,255,0.1); }
}

/* ── Inside card: force white TRANS/FORME, neon Z ── */
.logo-card .logo-wordmark-lg { position: relative; z-index: 1; }

.logo-card .wm-trans,
.logo-card .wm-forme {
  color: #ffffff !important;
  text-shadow: 0 0 30px rgba(255,255,255,0.1), 0 2px 4px rgba(0,0,0,0.6) !important;
}

.logo-card .wm-zee {
  color: #00eeff !important;
  text-shadow:
    0 0 4px #00eeff,
    0 0 12px #00eeff,
    0 0 28px rgba(0,238,255,0.85),
    0 0 55px rgba(0,238,255,0.5),
    0 0 100px rgba(0,238,255,0.2) !important;
}

/* ── Bar separator ── */
.wm-bar {
  height: 1.5px; margin: 0.2rem 0 0.28rem;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
}
.wm-bar-lg {
  height: 1.5px; margin: 0.4rem 0 0.5rem;
  background: linear-gradient(to right, transparent 5%, rgba(0,235,255,0.8) 30%, rgba(0,235,255,0.8) 70%, transparent 95%);
  box-shadow: 0 0 10px rgba(0,235,255,0.55);
  position: relative; z-index: 1;
}

/* ── Tagline ── */
.wm-tagline {
  font-family: var(--font-body); font-size: 0.48rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cyan-dim); font-weight: 400;
}
.wm-tagline-lg {
  font-family: var(--font-body); font-size: clamp(0.5rem, 1vw, 0.72rem);
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(0,232,255,0.6); font-weight: 400;
  text-shadow: 0 0 12px rgba(0,232,255,0.35);
  position: relative; z-index: 1;
}

/* ── Slash (decorative, hidden on light bg) ── */
.wm-slash    { position: absolute; right: -0.04em; top: -0.1em; width: 2px; height: 110%;
               background: linear-gradient(to bottom, transparent, rgba(0,235,255,0.8), transparent);
               transform: rotate(15deg); opacity: 0; }
.wm-slash-lg { position: absolute; right: -0.02em; top: -0.08em; width: 2px; height: 112%;
               background: linear-gradient(to bottom, transparent 5%, #00eeff 40%, #00eeff 60%, transparent 95%);
               transform: rotate(15deg);
               box-shadow: 0 0 8px #00eeff, 0 0 20px rgba(0,238,255,0.5);
               z-index: 1; }

/* ── Nav logo container ── */
.nav-logo { display: flex; flex-direction: column; gap: 0; }

/* ================================================
   CUSTOM CURSOR
   ================================================ */
.cursor {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999; transform: translate(-50%,-50%);
  box-shadow: var(--glow-sm); transition: width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(0,122,173,0.45);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998; transform: translate(-50%,-50%);
  transition: transform 0.1s ease;
}

/* ================================================
   LAYOUT
   ================================================ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section--alt { background: var(--bg-1); }

.section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  color: var(--cyan); display: block; margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-title {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; color: var(--text);
  margin-bottom: 1rem; letter-spacing: 0.02em;
}
.section-desc { color: var(--text-muted); font-size: 1rem; }
.cyan-text { color: var(--cyan); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  padding: 0.75rem 1.75rem; border: none; cursor: pointer;
  transition: var(--transition); white-space: nowrap; position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  letter-spacing: 0.04em;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.2s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan-bright));
  color: #fff; box-shadow: 0 4px 18px rgba(0,122,173,0.3);
  font-weight: 700;
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(0,122,173,0.45); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--cyan);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover { background: var(--cyan-faint); border-color: var(--cyan); box-shadow: var(--glow-sm); }

.btn-nav {
  background: var(--cyan-faint); color: var(--cyan);
  border: 1.5px solid var(--border-mid);
  font-size: 0.82rem; padding: 0.5rem 1.2rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-nav:hover { background: rgba(0,122,173,0.12); }
.btn-full { width: 100%; justify-content: center; }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(238,245,251,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(12,25,41,0.07);
  padding: 0.75rem 0;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-links { display: flex; align-items: center; gap: 2rem; margin: 0 auto; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  transition: color 0.2s; position: relative;
}
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-muted); border-radius: 2px; transition: var(--transition);
}
.nav-mobile {
  display: none; background: rgba(238,245,251,0.97);
  border-top: 1px solid var(--border); padding: 1.5rem 2rem;
  box-shadow: 0 8px 24px rgba(12,25,41,0.08);
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile a { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.nav-mobile.open { display: block; }

/* ================================================
   HERO SLIDER
   ================================================ */

/* Wrapper — full viewport, always dark for dramatic impact */
.hslider {
  position: relative; width: 100%; height: 100vh; min-height: 620px;
  overflow: hidden;
  background: linear-gradient(160deg, #0b1a2a 0%, #091320 50%, #060d18 100%);
}

/* Shared bg layers */
#particleCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(0,200,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-scanlines {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,200,255,0.015) 3px, rgba(0,200,255,0.015) 4px
  );
}

/* Track */
.hslider-track { position: absolute; inset: 0; z-index: 5; }

/* Individual slide */
.hslide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
              transform 0.75s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.hslide--active {
  opacity: 1; transform: translateX(0);
  pointer-events: auto;
}
.hslide--exit {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Two-column inner layout */
.hslide-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; height: 100%;
  max-width: 1240px; margin: 0 auto; padding: 0 3rem;
  padding-top: 5rem;
}

/* ── Left: text ── */
.hslide-left { display: flex; flex-direction: column; gap: 0; }

.hslide-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  color: rgba(0,232,255,0.75); text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 6px #4ade80;
  animation: blink-dot 2s infinite;
}
@keyframes blink-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hslide-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700;
  line-height: 1.1; color: #fff; letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

/* Reuse typed wrap in slide 1 */
.hero-typed-wrap {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem); color: rgba(232,244,248,0.55);
  margin-bottom: 1.25rem; min-height: 1.8rem; justify-content: flex-start;
}
.typed-label { color: rgba(232,244,248,0.35); }
.typed-value { color: #00eeff; font-weight: 600; }
.typed-caret { color: #00eeff; animation: caret-blink 0.8s step-end infinite; }
@keyframes caret-blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hslide-desc {
  font-size: 0.97rem; color: rgba(232,244,248,0.55);
  line-height: 1.8; margin-bottom: 2rem; max-width: 480px;
}
.hslide-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Big stats (slide 2) */
.hslide-bigstats {
  display: flex; gap: 2.5rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.hbs-item span {
  display: block; font-family: 'Rajdhani', sans-serif;
  font-size: 3rem; font-weight: 700; color: #00eeff; line-height: 1;
  text-shadow: 0 0 20px rgba(0,238,255,0.4);
}
.hbs-item span em { font-style: normal; font-size: 1.8rem; }
.hbs-item small {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(232,244,248,0.4);
}

/* Industries strip (slide 2) */
.hslide-industries { margin-bottom: 2rem; }
.hind-label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(232,244,248,0.35); margin-bottom: 0.6rem;
}
.hind-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.hind-tags span {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(0,238,255,0.8);
  border: 1px solid rgba(0,238,255,0.25);
  background: rgba(0,238,255,0.06);
  padding: 0.3rem 0.8rem; border-radius: 3px;
}

/* ── Right: visual areas ── */
.hslide-right {
  display: flex; align-items: center; justify-content: center;
  height: 100%; position: relative;
}

/* Slide 1 visual — orbital rings */
.hslide-right--1 { }
.hsr-orb {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,238,255,0.12);
  animation: orb-spin 20s linear infinite;
}
.hsr-orb--outer { width: 340px; height: 340px; animation-duration: 28s; }
.hsr-orb--mid   { width: 240px; height: 240px; animation-direction: reverse; animation-duration: 18s; border-color: rgba(0,238,255,0.18); }
.hsr-orb--inner { width: 150px; height: 150px; animation-duration: 12s; border-color: rgba(0,238,255,0.25); }
@keyframes orb-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hsr-core {
  position: relative; z-index: 5;
  width: 80px; height: 80px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(0,238,255,0.1);
  border: none; display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif; font-size: 1rem; font-weight: 900;
  box-shadow: 0 0 30px rgba(0,238,255,0.25);
  animation: core-pulse 2.5s ease-in-out infinite;
}
@keyframes core-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(0,238,255,0.25); }
  50%      { box-shadow: 0 0 50px rgba(0,238,255,0.5); }
}
.hsr-label {
  position: absolute; z-index: 5;
  font-family: 'Exo 2', sans-serif; font-size: 0.7rem; font-weight: 900;
  letter-spacing: 0.12em; color: #00eeff;
  background: rgba(5,15,25,0.8); border: 1px solid rgba(0,238,255,0.3);
  padding: 0.25rem 0.6rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  animation: label-float 4s ease-in-out infinite;
}
.hsr-label--1 { top: 14%; left: 58%; animation-delay: 0s; }
.hsr-label--2 { top: 42%; right: 4%; animation-delay: 0.6s; }
.hsr-label--3 { bottom: 20%; left: 55%; animation-delay: 1.2s; }
.hsr-label--4 { bottom: 22%; left: 24%; animation-delay: 1.8s; }
.hsr-label--5 { top: 38%; left: 6%; animation-delay: 2.4s; }
@keyframes label-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Slide 2 visual — stat grid cards */
.hs2-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; width: 320px;
}
.hs2-card {
  background: rgba(0,238,255,0.05); border: 1px solid rgba(0,238,255,0.18);
  padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: 0.3rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  animation: card-float 4s ease-in-out infinite;
}
.hs2-card--1 { animation-delay: 0s; }
.hs2-card--2 { animation-delay: 0.5s; }
.hs2-card--3 { animation-delay: 1s; }
.hs2-card--4 { animation-delay: 1.5s; }
@keyframes card-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hs2-n {
  font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; font-weight: 700;
  color: #00eeff; line-height: 1; text-shadow: 0 0 16px rgba(0,238,255,0.4);
}
.hs2-l { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,244,248,0.4); }

/* Slide 3 visual — service tiles */
.hs3-services {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; width: 380px;
}
.hs3-svc {
  background: rgba(0,238,255,0.04); border: 1px solid rgba(0,238,255,0.15);
  padding: 1.25rem 0.75rem; display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem; text-align: center; cursor: default;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  animation: svc-float 3.5s ease-in-out infinite;
}
.hs3-svc:nth-child(1) { animation-delay: 0s; }
.hs3-svc:nth-child(2) { animation-delay: 0.3s; }
.hs3-svc:nth-child(3) { animation-delay: 0.6s; }
.hs3-svc:nth-child(4) { animation-delay: 0.9s; }
.hs3-svc:nth-child(5) { animation-delay: 1.2s; }
.hs3-svc:nth-child(6) { animation-delay: 1.5s; }
@keyframes svc-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hs3-svc:hover { background: rgba(0,238,255,0.1); border-color: rgba(0,238,255,0.4); transform: translateY(-6px) !important; }
.hs3-icon { font-size: 1.6rem; }
.hs3-svc span:last-child { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(232,244,248,0.5); }

/* ── Feature list (slides 4–6) ── */
.hslide-features { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.75rem; }
.hf-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: rgba(232,244,248,0.65); font-weight: 500;
}
.hf-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: #00eeff; box-shadow: 0 0 6px rgba(0,238,255,0.6);
}

/* ═══════════════════════════════════════════
   SLIDE 4 — AI Brain Visual
   ═══════════════════════════════════════════ */
.vis-ai-brain {
  position: relative; width: 360px; height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.aib-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.aib-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(0,238,255,0.12);
}
.aib-ring--1 { width: 180px; height: 180px; animation: orb-spin 15s linear infinite; border-color: rgba(0,238,255,0.18); }
.aib-ring--2 { width: 300px; height: 300px; animation: orb-spin 25s linear infinite reverse; }
.aib-core {
  position: relative; z-index: 5;
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,238,255,0.3) 0%, rgba(0,40,70,0.9) 100%);
  border: 2px solid rgba(0,238,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif; font-size: 1.1rem; font-weight: 900;
  color: #00eeff; letter-spacing: 0.08em;
  box-shadow: 0 0 30px rgba(0,238,255,0.4), inset 0 0 20px rgba(0,238,255,0.15);
  animation: core-pulse 2.5s ease-in-out infinite;
}
.aib-node {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(0,238,255,0.07); border: 1px solid rgba(0,238,255,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif; font-size: 0.65rem; font-weight: 800;
  color: #00eeff; letter-spacing: 0.06em;
  animation: node-pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(0,238,255,0.2);
}
.aib-node span { font-size: 0.65rem; }
.aib-node--1 { top: 12%;  left: 60%;  animation-delay: 0s; }
.aib-node--2 { top: 42%;  right: 3%;  animation-delay: 0.4s; }
.aib-node--3 { bottom: 10%; left: 58%;  animation-delay: 0.8s; }
.aib-node--4 { bottom: 10%; left: 20%;  animation-delay: 1.2s; }
.aib-node--5 { top: 42%;  left: 3%;   animation-delay: 1.6s; }
.aib-node--6 { top: 12%;  left: 22%;  animation-delay: 2s; }

/* ═══════════════════════════════════════════
   SLIDE 5 — Market Data Visual
   ═══════════════════════════════════════════ */
.vis-market {
  width: 360px;
  background: rgba(0,238,255,0.04); border: 1px solid rgba(0,238,255,0.2);
  border-radius: 8px; padding: 1.4rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.mkt-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.2rem;
}
.mkt-title {
  font-family: 'Exo 2', sans-serif; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.12em; color: rgba(232,244,248,0.5);
}
.mkt-live {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: #4ade80;
}
.mkt-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: blink-dot 1.5s infinite;
}
.mkt-chart {
  position: relative; height: 120px; margin-bottom: 1.2rem;
  display: flex; align-items: flex-end; gap: 6px;
}
.mkt-bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: rgba(0,238,255,0.15); border: 1px solid rgba(0,238,255,0.25);
  animation: bar-grow 1s ease-out both;
}
.mkt-bar--1 { height: 45%; animation-delay: 0.1s; }
.mkt-bar--2 { height: 62%; animation-delay: 0.2s; }
.mkt-bar--3 { height: 54%; animation-delay: 0.3s; }
.mkt-bar--4 { height: 80%; animation-delay: 0.4s; background: rgba(0,238,255,0.25); }
.mkt-bar--5 { height: 68%; animation-delay: 0.5s; }
.mkt-bar--6 { height: 88%; animation-delay: 0.6s; background: rgba(0,238,255,0.3); }
.mkt-bar--7 { height: 95%; animation-delay: 0.7s; background: rgba(0,238,255,0.35); border-color: rgba(0,238,255,0.5); }
@keyframes bar-grow { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }
.mkt-line { position: absolute; inset: 0; width: 100%; height: 100%; }
.mkt-tickers { display: flex; flex-direction: column; gap: 0.5rem; }
.mkt-tick {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.4rem 0.6rem;
  background: rgba(0,238,255,0.04); border: 1px solid rgba(0,238,255,0.12);
  border-radius: 3px;
}
.mt-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(232,244,248,0.5); }
.mt-val   { font-family: 'Exo 2', sans-serif; font-size: 0.8rem; font-weight: 700; }
.mt-val.up { color: #4ade80; }
.mt-val.dn { color: #f87171; }

/* ═══════════════════════════════════════════
   SLIDE 6 — Supplier / Supply Chain Visual
   ═══════════════════════════════════════════ */
.vis-supply {
  width: 380px;
  background: rgba(0,238,255,0.03); border: 1px solid rgba(0,238,255,0.18);
  border-radius: 8px; padding: 2rem 1.5rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.sc-flow {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
}
.sc-node {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  background: rgba(0,238,255,0.06); border: 1px solid rgba(0,238,255,0.28);
  border-radius: 8px; padding: 1rem 0.9rem; min-width: 88px; text-align: center;
  animation: svc-float 3.5s ease-in-out infinite;
}
.sc-node--vendor  { animation-delay: 0s; }
.sc-node--ship    { animation-delay: 0.6s; border-color: rgba(0,238,255,0.45); background: rgba(0,238,255,0.1); }
.sc-node--delivery{ animation-delay: 1.2s; }
.sc-icon  { font-size: 1.8rem; line-height: 1; }
.sc-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #00eeff; }
.sc-sub   { font-size: 0.62rem; color: rgba(232,244,248,0.35); letter-spacing: 0.04em; }
.sc-arrow { flex: 1; display: flex; align-items: center; padding: 0 0.4rem; }
.sc-line  {
  flex: 1; height: 2px; background: rgba(0,238,255,0.15);
  position: relative; overflow: hidden; border-radius: 2px;
}
.sc-pulse {
  position: absolute; top: 0; left: -40%; width: 40%; height: 100%;
  background: linear-gradient(to right, transparent, #00eeff, transparent);
  animation: sc-move 2s linear infinite;
}
@keyframes sc-move { from { left: -40%; } to { left: 140%; } }
.sc-bottom {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(0,238,255,0.1);
}
.sc-stat { text-align: center; }
.sc-stat span {
  display: block; font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: #00eeff; line-height: 1;
  text-shadow: 0 0 12px rgba(0,238,255,0.4);
}
.sc-stat small { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(232,244,248,0.35); }
.sc-divider { width: 1px; height: 36px; background: rgba(0,238,255,0.15); }

/* ── Hero slider nav arrows ── */
.hslider-arrow {
  position: absolute; top: 50%; z-index: 20;
  transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,238,255,0.08); border: 1px solid rgba(0,238,255,0.25);
  color: #00eeff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 0 0 rgba(0,238,255,0);
}
.hslider-arrow svg { width: 20px; height: 20px; }
.hslider-arrow--prev { left: 1.5rem; }
.hslider-arrow--next { right: 1.5rem; }
.hslider-arrow:hover {
  background: rgba(0,238,255,0.16);
  box-shadow: 0 0 20px rgba(0,238,255,0.3);
  transform: translateY(-50%) scale(1.08);
}

/* ── Dots ── */
.hslider-dots {
  position: absolute; bottom: 5.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 20;
}
.hsdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,238,255,0.25); border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.hsdot--active {
  background: #00eeff; transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0,238,255,0.6);
}

/* ── Progress bar ── */
.hslider-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: rgba(0,238,255,0.08); z-index: 20;
}
.hslider-fill {
  height: 100%; width: 0%;
  background: linear-gradient(to right, rgba(0,238,255,0.4), #00eeff);
  box-shadow: 0 0 6px rgba(0,238,255,0.5);
  transition: width linear;
}

/* ── Slide number ── */
.hslider-num {
  position: absolute; bottom: 4.8rem; right: 2.5rem; z-index: 20;
  font-family: 'Exo 2', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: rgba(0,238,255,0.4); letter-spacing: 0.12em;
}
#hsCurrent { color: #00eeff; font-size: 1.1rem; text-shadow: 0 0 10px rgba(0,238,255,0.4); }

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 20; color: rgba(0,238,255,0.35); font-size: 0.6rem; letter-spacing: 0.2em;
}
.scroll-beam {
  width: 1.5px; height: 36px;
  background: linear-gradient(to bottom, transparent, #00eeff);
  animation: beam-anim 2s ease infinite;
}
@keyframes beam-anim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ================================================
   MARQUEE
   ================================================ */
.marquee-strip {
  background: rgba(0,122,173,0.05);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0.85rem 0; overflow: hidden;
}
.marquee-track { display: flex; gap: 2rem; width: max-content; animation: marquee-flow 32s linear infinite; }
.marquee-track span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; color: var(--text-muted); white-space: nowrap; text-transform: uppercase; }
.marquee-track .sep { color: var(--cyan); }
@keyframes marquee-flow { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================
   SERVICES
   ================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.svc-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 2rem; position: relative; overflow: hidden; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  box-shadow: var(--shadow-card);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.svc-corner {
  position: absolute; top: 0; right: 0; width: 20px; height: 20px;
  background: var(--border); clip-path: polygon(0 0, 100% 0, 100% 100%);
  transition: background var(--transition);
}
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cyan-faint) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.svc-card:hover { background: var(--bg-card-hover); border-color: var(--border-mid); transform: translateY(-4px); box-shadow: var(--shadow-hover), var(--glow-sm); }
.svc-card:hover .svc-corner { background: var(--border-strong); }
.svc-card:hover::after { opacity: 1; }

.svc-icon {
  width: 46px; height: 46px; border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; background: var(--cyan-faint);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background var(--transition), box-shadow var(--transition);
}
.svc-card:hover .svc-icon { background: rgba(0,122,173,0.12); box-shadow: var(--glow-sm); }
.svc-icon svg { width: 20px; height: 20px; color: var(--cyan); }

.svc-num { position: absolute; top: 1.25rem; right: 1.5rem; font-family: var(--font-logo); font-size: 0.65rem; color: var(--text-dim); letter-spacing: 0.1em; }
.svc-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.03em; margin-bottom: 0.65rem; color: var(--text); position: relative; z-index: 1; }
.svc-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.svc-tags span {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  background: var(--cyan-faint); border: 1px solid var(--border-mid);
  padding: 0.2rem 0.6rem; color: var(--cyan); text-transform: uppercase;
}
.svc-link { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; color: var(--text-dim); text-transform: uppercase; transition: color 0.2s; position: relative; z-index: 1; }
.svc-link span { transition: transform 0.2s; display: inline-block; }
.svc-card:hover .svc-link { color: var(--cyan); }
.svc-card:hover .svc-link span { transform: translateX(4px); }

/* ================================================
   STATS
   ================================================ */
.stats-section {
  padding: 5rem 0; background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  box-shadow: inset 0 0 80px rgba(0,122,173,0.04);
}
.stats-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,122,173,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-item { position: relative; padding: 2rem 1rem; }
.stat-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,173,0.08) 0%, transparent 70%);
}
.stat-value {
  font-family: var(--font-head); font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700; color: var(--cyan); line-height: 1; display: inline;
}
.stat-plus { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--cyan); display: inline; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.5rem; }

/* ================================================
   CASE STUDIES
   ================================================ */
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 280px; gap: 1.5rem; }
.work-card--wide { grid-column: span 2; }
.work-card {
  position: relative; overflow: hidden; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover), var(--glow-sm); }

.wc-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--c1), var(--c2)); opacity: 0.22; transition: opacity 0.4s; }
.work-card:hover .wc-bg { opacity: 0.35; }
.work-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.6) 55%, transparent 100%);
}
.work-card::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  transition: border-color 0.3s; z-index: 3;
}
.work-card:hover::after { border-color: var(--border-mid); }

.wc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem; z-index: 4; }
.wc-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.5rem; }
.work-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 0.4rem; color: var(--text); }
.work-card p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.55; margin-bottom: 0.75rem; }
.wc-metrics { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.wc-metric { display: flex; flex-direction: column; }
.wc-num { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--cyan); line-height: 1; }
.wc-metric span:last-child { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.06em; margin-top: 0.15rem; }

.wc-corner-tl, .wc-corner-br { position: absolute; z-index: 5; width: 16px; height: 16px; transition: box-shadow 0.3s, border-color 0.3s; }
.wc-corner-tl { top: 8px; left: 8px; border-top: 1.5px solid var(--border-mid); border-left: 1.5px solid var(--border-mid); }
.wc-corner-br { bottom: 8px; right: 8px; border-bottom: 1.5px solid var(--border-mid); border-right: 1.5px solid var(--border-mid); }
.work-card:hover .wc-corner-tl,
.work-card:hover .wc-corner-br { border-color: var(--cyan); }

/* ================================================
   PROCESS
   ================================================ */
.process-track { position: relative; }
.process-line {
  position: absolute; top: 32px; left: calc(12.5% + 1rem); right: calc(12.5% + 1rem);
  height: 1px; background: linear-gradient(to right, transparent, var(--border-mid), var(--border-mid), transparent);
}
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.pstep { display: flex; flex-direction: column; align-items: center; text-align: center; }
.pstep-dot {
  width: 64px; height: 64px; border: 1.5px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem; background: var(--bg-2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: var(--shadow-card); transition: background var(--transition), box-shadow var(--transition);
}
.pstep-dot span { font-family: var(--font-logo); font-size: 0.75rem; font-weight: 700; color: var(--cyan); letter-spacing: 0.05em; }
.pstep:hover .pstep-dot { background: var(--cyan-faint); box-shadow: var(--glow-sm); }
.pstep-card {
  background: var(--bg-card); border: 1px solid var(--border); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pstep:hover .pstep-card { border-color: var(--border-mid); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pstep-icon { width: 40px; height: 40px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; }
.pstep-icon svg { width: 22px; height: 22px; color: var(--cyan); }
.pstep-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 0.65rem; color: var(--text); }
.pstep-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; }

/* ================================================
   TECH STACK
   ================================================ */
.tech-section { padding: 5rem 0 4rem; overflow: hidden; background: var(--bg-2); }
.tech-section .section-header { margin-bottom: 2.5rem; }
.tech-marquee { overflow: hidden; padding: 0.5rem 0; }
.tech-track { display: flex; gap: 0.75rem; width: max-content; animation: marquee-flow 28s linear infinite; }
.tech-track--reverse { animation-direction: reverse; }
.tech-pill {
  padding: 0.6rem 1.25rem;
  background: var(--bg-0); border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  white-space: nowrap; letter-spacing: 0.05em; text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tech-pill:hover { background: var(--cyan-faint); color: var(--cyan); border-color: var(--border-mid); }
.tech-pill--outline { background: rgba(255,255,255,0.5); color: var(--text-dim); }
.tech-pill--outline:hover { background: var(--cyan-faint); color: var(--cyan-dim); }

/* ================================================
   ABOUT
   ================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-left .section-title { margin: 0.75rem 0 1.5rem; }
.about-left p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 0.95rem; }
.about-checks { display: flex; flex-direction: column; gap: 0.75rem; margin: 2rem 0 2.5rem; }
.about-check { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; color: var(--text-muted); }
.check-icon {
  width: 22px; height: 22px; flex-shrink: 0; border: 1.5px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center; background: var(--cyan-faint);
}
.check-icon svg { width: 12px; height: 12px; color: var(--cyan); }

.about-right { display: flex; align-items: center; justify-content: center; }
.about-viz { position: relative; width: 360px; height: 360px; display: flex; align-items: center; justify-content: center; }
.viz-ring { position: absolute; border-radius: 50%; border: 1px solid var(--border); animation: ring-rotate 20s linear infinite; }
.viz-ring--1 { width: 200px; height: 200px; border-color: rgba(0,122,173,0.18); animation-duration: 15s; }
.viz-ring--2 { width: 280px; height: 280px; border-color: rgba(0,122,173,0.1); animation-duration: 25s; animation-direction: reverse; }
.viz-ring--3 { width: 340px; height: 340px; border-color: rgba(0,122,173,0.06); animation-duration: 35s; }
@keyframes ring-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.viz-center {
  width: 80px; height: 80px; border: 1.5px solid var(--border-mid); background: var(--bg-2);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--glow-sm), var(--shadow-card);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.viz-card {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  border: 1px solid var(--border-mid); padding: 0.75rem 1rem;
  box-shadow: var(--shadow-hover); animation: float-card 5s ease-in-out infinite;
  min-width: 160px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.viz-card--1 { top: 8%; left: -15%; animation-delay: 0s; }
.viz-card--2 { top: 40%; right: -15%; animation-delay: 1.8s; }
.viz-card--3 { bottom: 8%; left: 0%; animation-delay: 3.5s; }
.viz-card strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.viz-card small { color: var(--text-dim); font-size: 0.72rem; }
.viz-emoji { font-size: 1.2rem; flex-shrink: 0; }
@keyframes float-card { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card {
  background: var(--bg-2); border: 1px solid var(--border); padding: 2rem;
  box-shadow: var(--shadow-card);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { border-color: var(--border-mid); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testi-quote-mark { font-family: Georgia, serif; font-size: 5rem; line-height: 0.8; color: var(--cyan); margin-bottom: 0.75rem; display: block; opacity: 0.5; }
.testi-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; }
.testi-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--ac, var(--cyan)); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.testi-author span { font-size: 0.75rem; color: var(--text-dim); }

/* ================================================
   CONTACT
   ================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-left .section-title { margin: 0.75rem 0 1rem; }
.contact-left p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.cd-item { display: flex; align-items: flex-start; gap: 1rem; }
.cd-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--cyan-faint); border: 1.5px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.cd-icon svg { width: 16px; height: 16px; color: var(--cyan); }
.cd-item strong { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.2rem; }
.cd-item span { font-size: 0.9rem; color: var(--text-muted); }
.contact-logo-wrap {
  padding: 1.5rem; background: var(--bg-2); border: 1px solid var(--border-mid);
  display: inline-flex; flex-direction: column; box-shadow: var(--shadow-card);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.contact-form {
  background: var(--bg-2); border: 1px solid var(--border); padding: 2.5rem;
  box-shadow: var(--shadow-card); position: relative;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
.form-corner-tl, .form-corner-br { position: absolute; width: 20px; height: 20px; z-index: 2; }
.form-corner-tl { top: 8px; left: 8px; border-top: 1.5px solid var(--border-strong); border-left: 1.5px solid var(--border-strong); }
.form-corner-br { bottom: 8px; right: 8px; border-bottom: 1.5px solid var(--border-strong); border-right: 1.5px solid var(--border-strong); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.fg label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.fg input, .fg select, .fg textarea {
  background: var(--bg-0); border: 1.5px solid var(--border);
  padding: 0.75rem 1rem; color: var(--text);
  font-family: var(--font-body); font-size: 0.88rem; outline: none; width: 100%; resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.fg select { cursor: pointer; background-color: var(--bg-0); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-dim); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--border-mid); box-shadow: var(--glow-sm); }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--bg-1); border-top: 1px solid var(--border); padding: 5rem 0 2rem; position: relative; overflow: hidden; }
.footer-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,122,173,0.05) 0%, transparent 70%); pointer-events: none;
}
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.75; margin: 1.25rem 0 1.5rem; max-width: 280px; }
.footer-logo { display: flex; flex-direction: column; }
.social-row { display: flex; gap: 0.6rem; }
.social-row a {
  width: 36px; height: 36px; background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: all 0.2s; box-shadow: var(--shadow-card);
}
.social-row a svg { width: 14px; height: 14px; }
.social-row a:hover { color: var(--cyan); border-color: var(--border-mid); background: var(--cyan-faint); box-shadow: var(--glow-sm); }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-dim);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-muted); }

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.services-grid .reveal:nth-child(2), .work-grid .reveal:nth-child(2), .testi-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3), .work-grid .reveal:nth-child(3), .testi-grid .reveal:nth-child(3) { transition-delay: 0.18s; }
.services-grid .reveal:nth-child(4), .work-grid .reveal:nth-child(4) { transition-delay: 0.26s; }
.services-grid .reveal:nth-child(5), .work-grid .reveal:nth-child(5) { transition-delay: 0.34s; }
.services-grid .reveal:nth-child(6), .work-grid .reveal:nth-child(6) { transition-delay: 0.42s; }
.process-steps .reveal:nth-child(2) { transition-delay: 0.12s; }
.process-steps .reveal:nth-child(3) { transition-delay: 0.22s; }
.process-steps .reveal:nth-child(4) { transition-delay: 0.32s; }

/* ================================================
   CAPABILITY SLIDER
   ================================================ */

/* Outer section */
.cslider {
  position: relative;
  width: 100%; height: 88vh; min-height: 560px;
  overflow: hidden;
  background: #060f18;
}

/* Scan-wipe overlay — the cyan line that sweeps on transition */
.cslider-scanwipe {
  position: absolute; top: 0; left: -4px;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, #00eeff 40%, #00eeff 60%, transparent 100%);
  box-shadow: 0 0 20px #00eeff, 0 0 40px rgba(0,238,255,0.5);
  z-index: 50; pointer-events: none; opacity: 0;
}
.cslider-scanwipe.scanning {
  animation: scan-sweep 0.55s cubic-bezier(0.4,0,0.6,1) forwards;
}
@keyframes scan-sweep {
  0%   { left: -4px; opacity: 1; }
  100% { left: calc(100% + 4px); opacity: 1; }
}

/* Track — holds all slides */
.cslider-track { position: relative; width: 100%; height: 100%; }

/* Individual slide */
.cslide {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.55s cubic-bezier(0.4,0,0.2,1), opacity 0.15s;
  pointer-events: none;
}
.cslide--active {
  opacity: 1;
  clip-path: inset(0 0% 0 0);
  pointer-events: auto;
  z-index: 2;
}
.cslide--exit {
  opacity: 0;
  clip-path: inset(0 0% 0 100%);
  transition: clip-path 0.55s cubic-bezier(0.4,0,0.8,1), opacity 0.5s;
  z-index: 1;
}

/* Dark background per slide */
.cslide-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, var(--g2), var(--g1) 60%, var(--g3) 100%);
}

/* Left: text content */
.cslide-content {
  position: relative; z-index: 5;
  padding: 4rem 3rem 4rem 5rem;
  display: flex; flex-direction: column; gap: 0;
}

/* Eyebrow row */
.cslide-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.cslide-num {
  font-family: 'Exo 2', sans-serif; font-size: 0.75rem;
  font-weight: 900; letter-spacing: 0.15em; color: #00eeff;
  border: 1px solid rgba(0,238,255,0.3);
  padding: 0.25rem 0.6rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.cslide-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(0,238,255,0.65);
}

/* Main title */
.cslide-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
  color: #fff; margin-bottom: 1.25rem; letter-spacing: 0.02em;
}
.cslide-title em {
  font-style: normal; color: #00eeff;
  text-shadow: 0 0 16px rgba(0,238,255,0.4);
}

/* Description */
.cslide-desc {
  font-size: 0.95rem; color: rgba(232,244,248,0.6);
  line-height: 1.75; margin-bottom: 1.75rem; max-width: 440px;
}

/* Mini stats row */
.cslide-stats {
  display: flex; gap: 2rem; margin-bottom: 2rem;
}
.css-stat span {
  display: block; font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem; font-weight: 700; color: #00eeff; line-height: 1;
  text-shadow: 0 0 12px rgba(0,238,255,0.4);
}
.css-stat small {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(232,244,248,0.4);
}

/* Right: Visual */
.cslide-visual {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  height: 100%; overflow: hidden;
}

/* ── Visual 1: Neural Network ── */
.vis-neural {
  position: relative; width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.nn-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,238,255,0.15);
}
.nn-ring--1 { width: 160px; height: 160px; animation: rot 12s linear infinite; }
.nn-ring--2 { width: 260px; height: 260px; border-color: rgba(0,238,255,0.09); animation: rot 20s linear infinite reverse; }
.nn-ring--3 { width: 360px; height: 360px; border-color: rgba(0,238,255,0.06); animation: rot 30s linear infinite; }
@keyframes rot { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.nn-core {
  position: relative; z-index: 5;
  width: 72px; height: 72px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,238,255,0.25) 0%, rgba(0,50,80,0.8) 100%);
  border: 1.5px solid rgba(0,238,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif; font-size: 0.85rem; font-weight: 900;
  color: #00eeff; letter-spacing: 0.1em;
  box-shadow: 0 0 20px rgba(0,238,255,0.3), inset 0 0 20px rgba(0,238,255,0.1);
  animation: core-pulse 2.5s ease-in-out infinite;
}
@keyframes core-pulse { 0%,100% { box-shadow: 0 0 20px rgba(0,238,255,0.3),inset 0 0 20px rgba(0,238,255,0.1); } 50% { box-shadow: 0 0 40px rgba(0,238,255,0.6),inset 0 0 30px rgba(0,238,255,0.2); } }
.nn-node {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: #00eeff; box-shadow: 0 0 8px #00eeff;
  animation: node-pulse 2s ease-in-out infinite;
}
.nn-node--1 { top: 18%; left: 64%; animation-delay: 0s; }
.nn-node--2 { top: 48%; right: 5%;  animation-delay: 0.4s; }
.nn-node--3 { bottom: 15%; left: 62%; animation-delay: 0.8s; }
.nn-node--4 { bottom: 18%; left: 22%; animation-delay: 1.2s; }
.nn-node--5 { top: 50%; left: 4%;   animation-delay: 1.6s; }
.nn-node--6 { top: 16%; left: 22%;  animation-delay: 2s; }
@keyframes node-pulse { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.5); opacity: 1; } }
.nn-lines { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── Visual 2: ERP Boxes ── */
.vis-erp {
  position: relative; width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.erp-box {
  position: absolute; display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; color: #00eeff;
  background: rgba(0,238,255,0.06); border: 1px solid rgba(0,238,255,0.3);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  animation: box-float 3s ease-in-out infinite;
}
.erp-box--center { width: 90px; height: 90px; font-size: 0.85rem; border-color: rgba(0,238,255,0.6); background: rgba(0,238,255,0.1); box-shadow: 0 0 20px rgba(0,238,255,0.2); animation: none; }
.erp-box--1 { width: 68px; height: 52px; top: 15%; left: 36%; animation-delay: 0s; }
.erp-box--2 { width: 68px; height: 52px; top: 42%; right: 5%; animation-delay: 0.5s; }
.erp-box--3 { width: 68px; height: 52px; bottom: 15%; left: 38%; animation-delay: 1s; }
.erp-box--4 { width: 68px; height: 52px; top: 38%; left: 5%; animation-delay: 1.5s; }
@keyframes box-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.erp-lines { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── Visual 3: RPA Hexagons ── */
.vis-rpa {
  position: relative; width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.rpa-hex {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(0,238,255,0.2);
  animation: rpa-spin 15s linear infinite;
}
.rpa-hex--1 { width: 140px; height: 140px; animation-duration: 10s; }
.rpa-hex--2 { width: 220px; height: 220px; animation-direction: reverse; animation-duration: 18s; border-color: rgba(0,238,255,0.12); }
.rpa-hex--3 { width: 310px; height: 310px; animation-duration: 28s; border-color: rgba(0,238,255,0.07); }
@keyframes rpa-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.rpa-core {
  position: relative; z-index: 5;
  width: 90px; height: 90px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(0,238,255,0.12); border: none;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif; font-size: 0.8rem; font-weight: 900;
  color: #00eeff; letter-spacing: 0.1em;
  box-shadow: 0 0 30px rgba(0,238,255,0.25);
  animation: core-pulse 2s ease-in-out infinite;
}
.rpa-pulse {
  position: absolute; border-radius: 50%;
  background: transparent; border: 1.5px solid rgba(0,238,255,0.4);
  animation: rpa-ping 2.4s ease-out infinite;
}
.rpa-pulse--1 { width: 90px; height: 90px; animation-delay: 0s; }
.rpa-pulse--2 { width: 90px; height: 90px; animation-delay: 0.8s; }
.rpa-pulse--3 { width: 90px; height: 90px; animation-delay: 1.6s; }
@keyframes rpa-ping { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(4); opacity: 0; } }

/* ── Visual 4: Data Chart ── */
.vis-data { position: relative; width: 400px; height: 300px; }
.data-chart { width: 100%; height: 100%; }
.data-nodes { position: absolute; inset: 0; }
.dn {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: #00eeff; box-shadow: 0 0 8px #00eeff;
  animation: node-pulse 2s ease-in-out infinite;
}
.dn--1 { top: 25%; right: 8%;  animation-delay: 0s; }
.dn--2 { top: 48%; left: 47%; animation-delay: 0.7s; }
.dn--3 { top: 32%; left: 66%; animation-delay: 1.4s; }

/* ── Controls ── */
.cslider-controls {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 1.5rem; z-index: 20;
}
.cslider-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(0,238,255,0.08); border: 1px solid rgba(0,238,255,0.3);
  color: #00eeff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cslider-btn svg { width: 18px; height: 18px; }
.cslider-btn:hover { background: rgba(0,238,255,0.18); box-shadow: 0 0 16px rgba(0,238,255,0.3); transform: scale(1.08); }

.cslider-dots { display: flex; gap: 0.5rem; align-items: center; }
.cdot {
  width: 24px; height: 3px; border-radius: 999px;
  background: rgba(0,238,255,0.2); border: none; cursor: pointer;
  transition: width 0.3s, background 0.3s, box-shadow 0.3s;
  padding: 0;
}
.cdot--active { width: 40px; background: #00eeff; box-shadow: 0 0 8px rgba(0,238,255,0.6); }

/* Progress bar */
.cslider-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: rgba(0,238,255,0.1); z-index: 20;
}
.cslider-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(to right, rgba(0,238,255,0.5), #00eeff);
  box-shadow: 0 0 6px rgba(0,238,255,0.5);
  transition: width linear;
}

/* Slide counter */
.cslider-counter {
  position: absolute; bottom: 2.2rem; right: 2.5rem; z-index: 20;
  font-family: 'Exo 2', sans-serif; font-size: 0.85rem; font-weight: 700;
  color: rgba(0,238,255,0.5); display: flex; align-items: center; gap: 0.3rem;
  letter-spacing: 0.1em;
}
#sliderCurrent { color: #00eeff; font-size: 1.2rem; text-shadow: 0 0 10px rgba(0,238,255,0.4); }
.cslider-slash { opacity: 0.3; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .cslide { grid-template-columns: 1fr; }
  .cslide-visual { display: none; }
  .cslide-content { padding: 3rem 2rem; }
}
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .work-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 250px; }
  .work-card--wide { grid-column: span 1; }
  .process-line { display: none; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-right { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-metrics { gap: 1rem; padding: 1rem 1.5rem; }
  .hm-div { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .logo-wordmark-lg { font-size: 2rem; }
  .logo-card { padding: 1.5rem 2rem; margin-bottom: 2rem; }

  /* Hero slider mobile */
  .hslider { height: auto; min-height: 100svh; }
  .hslide-inner {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 8rem;
    gap: 2rem;
  }
  .hslide-right { display: none; }
  .hslide-title { font-size: 2.4rem; }
  .hslide-desc { font-size: 0.9rem; }
  .hslide-bigstats { gap: 1.5rem; }
  .hbs-item span { font-size: 2.2rem; }
  .hslider-arrow { display: none; }
  .hslider-num { right: 1rem; bottom: 3.5rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-headline { font-size: 2.4rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { clip-path: none; }
  .hslide-inner { padding: 5.5rem 1.25rem 7rem; }
  .hslide-cta { flex-direction: column; align-items: flex-start; }
}
