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

:root {
  --bg: #03050a;
  --bg2: #080d1a;
  --surface: #0f1525;
  --surface2: #161e32;
  --border: #1c2742;
  --text: #e8edf5;
  --text2: #a8b0cc;
  --accent: #3b82f6;
  --accent2: #8b5cf6;
  --accent-dim: rgba(59,130,246,0.1);
  --gradient: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --gradient-2: linear-gradient(135deg, #6366f1, #a855f7);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html, body { overscroll-behavior: none; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

::selection { background: var(--accent); color: #fff; }

a, button, input, textarea { cursor: none; }

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

/* ─── Smooth Scroll ─── */
#smooth-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
  z-index: 1;
}
#smooth-content { position: relative; }

/* ─── Custom Cursor ─── */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-dot.hover { width: 10px; height: 10px; background: #fff; }
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(59,130,246,0.3);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}
.cursor-ring.hover {
  width: 56px; height: 56px;
  border-color: rgba(59,130,246,0.6);
  background: rgba(59,130,246,0.08);
}

/* ─── Particles Canvas ─── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── Scroll Progress ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gradient);
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── Loader ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-grid {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 80px);
  gap: 4px;
  opacity: 0.06;
}
.loader-cell {
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 4px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-cell:nth-child(2) { animation-delay: 0.1s; }
.loader-cell:nth-child(3) { animation-delay: 0.2s; }
.loader-cell:nth-child(4) { animation-delay: 0.3s; }
.loader-cell:nth-child(5) { animation-delay: 0.4s; }
.loader-cell:nth-child(6) { animation-delay: 0.5s; }
.loader-cell:nth-child(7) { animation-delay: 0.6s; }
.loader-cell:nth-child(8) { animation-delay: 0.7s; }
.loader-cell:nth-child(9) { animation-delay: 0.8s; }

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1); }
}

.loader-count-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}
.loader-count {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.loader-pct {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  color: var(--text2);
  margin-top: 0.15em;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 32px;
  transition: background 0.5s ease, padding 0.5s ease, backdrop-filter 0.5s ease;
}
.nav.scrolled {
  background: rgba(3,5,10,0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 32px;
  border-bottom: 1px solid rgba(28,39,66,0.5);
  mix-blend-mode: normal;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links { display: flex; gap: 36px; }

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { transform: scaleX(1); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  color: var(--text);
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(3,5,10,0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.mobile-link {
  color: var(--text);
  text-decoration: none;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--accent); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(59,130,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(59,130,246,0.05) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 70%);
}

/* Floating shapes */
.hero-floats { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}
.shape-1 {
  width: 600px; height: 600px;
  top: -10%; right: -10%;
  background: radial-gradient(circle, var(--accent), transparent);
  animation: floatShape 20s ease-in-out infinite;
}
.shape-2 {
  width: 300px; height: 300px;
  bottom: 10%; left: 5%;
  background: radial-gradient(circle, var(--accent2), transparent);
  animation: floatShape 15s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px; height: 200px;
  top: 40%; left: 50%;
  background: radial-gradient(circle, var(--accent), transparent);
  animation: floatShape 18s ease-in-out infinite 5s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}

.hero-mini {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.hero-line { display: block; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text2);
  max-width: 520px;
  line-height: 1.8;
  margin-top: 28px;
}

.hero-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

.magnetic-wrap { display: inline-block; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 16px 40px rgba(59,130,246,0.3); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: scale(1.05); }
.btn-full { width: 100%; justify-content: center; padding: 18px 36px; }

/* Hero Badge */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.hero-badge {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}
.badge-ring text {
  fill: var(--text2);
  font-size: 8.5px;
  letter-spacing: 5px;
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

.badge-core {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: pulseCore 4s ease-in-out infinite;
}
@keyframes pulseCore {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.1); }
  50% { box-shadow: 0 0 0 20px rgba(59,130,246,0); }
}

.hero-stats-mini {
  display: flex;
  gap: 24px;
}
.mini-stat {
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
.mini-num {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--text2);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line-wrap {
  width: 1px;
  height: 40px;
  background: rgba(136,146,168,0.2);
  overflow: hidden;
}
.scroll-line-inner {
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0%); }
  100% { transform: translateY(100%); }
}

/* ─── Section Common ─── */
section { padding: 140px 0; position: relative; }

.section-header {
  margin-bottom: 64px;
}
.section-header.wide { max-width: 720px; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 100px;
  background: rgba(59,130,246,0.04);
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-desc {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 560px;
}

/* ─── About ─── */
.about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about-visual { display: flex; justify-content: center; }
.about-node-graph {
  position: relative;
  width: 360px;
  height: 360px;
}
.node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(59,130,246,0.3);
}
.node-1 { top: 50%; left: 0; transform: translateY(-50%); }
.node-2 { top: 15%; left: 35%; }
.node-3 { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 20px; height: 20px; background: var(--gradient); }
.node-4 { top: 15%; right: 0; }
.node-5 { bottom: 15%; left: 35%; }
.node-connector {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(59,130,246,0.1);
  border-radius: 50%;
  animation: pulseRing 4s ease-in-out infinite;
}
.node-connector::before {
  content: '';
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(59,130,246,0.06);
  border-radius: 50%;
}
@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.6; }
}

/* Stats Marquee */
.stats-marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.marquee-inner {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
  white-space: nowrap;
}
.marquee-num {
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Services ─── */
.services {
  background: var(--bg);
  overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  transform-style: preserve-3d;
  perspective: 800px;
}
.service-card:hover { border-color: var(--accent); }
.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(59,130,246,0.06), transparent 50%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.service-card:hover .card-glow { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(59,130,246,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon { background: rgba(59,130,246,0.15); transform: scale(1.05); }
.service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text2); line-height: 1.7; }

/* ─── Industries ─── */
.industries {
  background: var(--bg);
  overflow: hidden;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  transform-style: preserve-3d;
  perspective: 800px;
}
.industry-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.industry-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(59,130,246,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}
.industry-card:hover .industry-icon { background: rgba(59,130,246,0.15); transform: scale(1.05); }
.industry-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.industry-card p { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.industry-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}
.industry-card:hover .industry-cta { gap: 12px; }
.industry-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0;
}
.industry-stat {
  background: rgba(59,130,246,0.04);
  border: 1px solid rgba(59,130,246,0.1);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.industry-stat-num {
  display: block;
  font-size: 18px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.industry-stat-label {
  display: block;
  font-size: 10px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* ─── Industry Detail Pages ─── */
.industry-hero {
  padding: 180px 0 80px;
  background: var(--bg);
  position: relative;
}
.industry-hero .container { max-width: 800px; }
.industry-hero .section-label { margin-bottom: 16px; }
.industry-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.industry-hero p { font-size: 18px; color: var(--text2); line-height: 1.7; }
.industry-body {
  padding: 0 0 100px;
  background: var(--bg);
}
.industry-body .container { max-width: 800px; }
.industry-body h2 { font-size: 28px; font-weight: 600; margin: 48px 0 16px; }
.industry-body h3 { font-size: 20px; font-weight: 600; margin: 32px 0 12px; color: var(--accent); }
.industry-body p { font-size: 16px; color: var(--text2); line-height: 1.9; margin-bottom: 20px; }
.industry-body ul { list-style: none; padding: 0; margin: 0 0 28px; }
.industry-body ul li {
  padding: 14px 18px;
  margin-bottom: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.industry-body ul li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.industry-body .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s, gap 0.3s;
  margin-bottom: 40px;
}
.industry-body .back-link:hover { color: var(--accent); gap: 12px; }
.industry-body .stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.industry-body .stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
}
.industry-body .stat-card .stat-num {
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.industry-body .stat-card .stat-label {
  font-size: 13px;
  color: var(--text2);
  margin-top: 4px;
  display: block;
}

/* ─── Case Study Detail Pages (HighRadius-inspired) ─── */
.cs-hero {
  padding: 160px 0 60px;
  background: var(--bg);
  position: relative;
}
.cs-hero .container { max-width: 900px; }
.cs-hero .cs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 24px;
}
.cs-hero .cs-breadcrumb a { color: var(--text2); text-decoration: none; transition: color 0.2s; }
.cs-hero .cs-breadcrumb a:hover { color: var(--accent); }
.cs-hero .cs-breadcrumb span { color: var(--text2); opacity: 0.5; }
.cs-hero .cs-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.cs-hero .cs-tag {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(59,130,246,0.1);
  color: var(--accent);
}
.cs-hero .cs-tag.cs-tag-industry { background: rgba(139,92,246,0.1); color: var(--accent2); }
.cs-hero h1 { font-size: clamp(34px, 4vw, 50px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.cs-hero .cs-subtitle { font-size: 17px; color: var(--text2); line-height: 1.6; margin-bottom: 40px; max-width: 700px; }
.cs-hero .cs-impact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 16px;
}
.cs-hero .cs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cs-hero .cs-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s;
}
.cs-hero .cs-stat:hover { border-color: var(--accent); }
.cs-hero .cs-stat .cs-stat-num {
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.cs-hero .cs-stat .cs-stat-label {
  font-size: 13px;
  color: var(--text2);
  margin-top: 8px;
  display: block;
  line-height: 1.4;
}
.cs-about-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.cs-about-bar .container { max-width: 900px; }
.cs-about-bar .cs-about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.cs-about-bar h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.cs-about-bar p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.cs-about-bar .cs-about-meta { display: flex; flex-direction: column; gap: 12px; }
.cs-about-bar .cs-about-meta-item { text-align: center; }
.cs-about-bar .cs-about-meta-item .meta-label { font-size: 11px; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; }
.cs-about-bar .cs-about-meta-item .meta-value { font-size: 22px; font-weight: 700; color: var(--text); margin-top: 4px; }
.cs-body {
  padding: 60px 0 80px;
  background: var(--bg);
}
.cs-body .container { max-width: 900px; }
.cs-body .cs-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.cs-body .cs-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0;
}
.cs-body .cs-column h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent);
}
.cs-body .cs-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cs-body .cs-column ul li {
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text2);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cs-body .cs-column ul li::before {
  content: "→";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.cs-body h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 44px 0 12px;
}
.cs-body p { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 16px; }
.cs-body .cs-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.cs-body .cs-result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s;
}
.cs-body .cs-result-card:hover { border-color: var(--accent); }
.cs-body .cs-result-card .result-pct {
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 80px;
}
.cs-body .cs-result-card .result-text { font-size: 14px; color: var(--text2); line-height: 1.5; }
.cs-body .cs-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.cs-body .cs-tech-stack span {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(59,130,246,0.08);
  color: var(--accent);
  border: 1px solid rgba(59,130,246,0.15);
}
.cs-body .cs-quote {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 28px 32px;
  margin: 32px 0;
}
.cs-body .cs-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.7;
}
.cs-body .cs-quote .cs-quote-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  font-style: normal;
}
.cs-body .cs-quote .cs-quote-title {
  font-size: 13px;
  color: var(--text2);
  font-style: normal;
}
.cs-body .cs-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.cs-body .cs-nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: gap 0.3s;
}
.cs-body .cs-nav-links a:hover { gap: 12px; }
.cs-cta {
  text-align: center;
  padding: 60px 0 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.cs-cta .container { max-width: 600px; }
.cs-cta h2 { font-size: 28px; font-weight: 600; margin-bottom: 12px; }
.cs-cta p { font-size: 15px; color: var(--text2); margin-bottom: 28px; line-height: 1.6; }

@media (max-width: 768px) {
  .cs-hero .cs-stats { grid-template-columns: 1fr; }
  .cs-about-bar .cs-about-grid { grid-template-columns: 1fr; gap: 20px; }
  .cs-body .cs-columns { grid-template-columns: 1fr; }
  .cs-body .cs-results-grid { grid-template-columns: 1fr; }
  .cs-body .cs-nav-links { flex-direction: column; align-items: flex-start; }
}

/* ─── Work / Horizontal ─── */
.work {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding-bottom: 100px;
}
.work-track-wrap {
  overflow: hidden;
  padding: 0 32px;
}
.work-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  padding: 8px 0;
}
.work-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  width: 380px;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  transform-style: preserve-3d;
  perspective: 800px;
}
.work-card:hover { transform: translateY(-8px) scale(1.02); }
.work-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-card-bg { transform: scale(1.08); }
.work-card-content {
  position: relative;
  z-index: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
  background: linear-gradient(to top, rgba(3,5,10,0.92) 0%, rgba(3,5,10,0.6) 40%, transparent 70%);
}
.work-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(59,130,246,0.12);
  color: var(--accent);
  margin-bottom: 20px;
  width: fit-content;
}
.work-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.work-card p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }
.work-stat { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text2); }
.work-stat-num { font-size: 22px; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── Process Timeline ─── */
.process {
  background: var(--bg);
  overflow: hidden;
}
.process-timeline {
  position: relative;
  max-width: 800px;
}
.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 23px;
  width: 1px;
  background: var(--border);
}
.process-step {
  position: relative;
  display: flex;
  gap: 36px;
  padding-bottom: 60px;
}
.process-step:last-child { padding-bottom: 0; }
.step-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 48px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--accent);
  transition: background 0.3s, box-shadow 0.3s;
}
.process-step:hover .step-dot {
  background: var(--accent);
  box-shadow: 0 0 20px rgba(59,130,246,0.3);
}
.step-content {
  flex: 1;
  padding-bottom: 20px;
}
.step-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.step-content h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.step-content p { font-size: 15px; color: var(--text2); line-height: 1.7; }

/* ─── CTA ─── */
.cta-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}
.cta-box {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}
.cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.04), transparent 60%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 17px;
  color: var(--text2);
  margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact ─── */
.contact {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-bottom: 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.7;
  margin: 20px 0 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text2);
  font-size: 15px;
}
.contact-item svg { color: var(--accent); flex-shrink: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: rgba(59,130,246,0.03);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text2); }

/* ─── Footer ─── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px;
}
.footer-brand { display: flex; align-items: center; gap: 24px; }
.footer-copy { font-size: 14px; color: var(--text2); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--text); }

.footer-marquee {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track-fast {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 15s linear infinite;
  white-space: nowrap;
}
.marquee-track-fast span {
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 4px;
  text-transform: uppercase;
  padding-right: 8px;
}

/* ═══════════════════════════════════════
   REVEAL STATES (set by JS)
   ═══════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal="up"] {
  transform: translateY(50px);
}
[data-reveal="scale"] {
  transform: scale(0.85);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Split text spans (set by JS) */
.split-char, .split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(40deg);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.split-char.revealed, .split-word.revealed {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* ─── Count-Up Animation ─── */
.count-up { display: inline-block; }
.count-up.animated {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Gradient Animated Border ─── */
.card-border-glow {
  position: relative;
  overflow: hidden;
}
.card-border-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent), var(--accent2));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  animation: borderGlow 3s ease infinite;
}
.card-border-glow:hover::before { opacity: 1; }
@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── Button Shimmer ─── */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: rotate(25deg);
  transition: left 0.6s var(--ease);
}
.btn-shimmer:hover::after { left: 120%; }

/* ─── Section Floating Shapes (Parallax) ─── */
.section-floats { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.float-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  will-change: transform;
}
.float-orb-1 {
  width: 400px; height: 400px;
  top: 10%; right: -5%;
  background: radial-gradient(circle, var(--accent), transparent);
}
.float-orb-2 {
  width: 250px; height: 250px;
  bottom: 15%; left: -5%;
  background: radial-gradient(circle, var(--accent2), transparent);
}
.float-orb-3 {
  width: 180px; height: 180px;
  top: 50%; left: 60%;
  background: radial-gradient(circle, var(--accent), transparent);
}

/* ─── Testimonial Auto-Rotate ─── */
.testimonials {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.testimonials-rotator {
  position: relative;
  min-height: 200px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transform: translateY(20px);
  pointer-events: none;
  text-align: center;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
.testimonial-slide p {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-slide .attribution {
  margin-top: 20px;
  font-size: 15px;
  font-style: normal;
  color: var(--text2);
}
.testimonial-slide .attribution strong { color: var(--accent); }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.testimonial-dot.active { background: var(--accent); transform: scale(1.3); }
.testimonial-dot:hover { background: var(--text2); }

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s var(--ease), background 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--surface2);
  border-color: var(--accent);
}

/* ─── Typewriter ─── */
.typewriter-wrap {
  display: inline;
}
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ─── Section divider wave ─── */
.section-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}
.section-divider-glow {
  height: 80px;
  position: relative;
  overflow: hidden;
}
.section-divider-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.15;
}
.section-divider-glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.04), transparent);
}

/* ─── Enhanced card spacing ─── */
.service-card { padding: 40px 36px; }
.service-card h3 { font-size: 21px; margin-bottom: 14px; }
.service-card p { font-size: 15px; line-height: 1.8; }

.industry-card { padding: 44px 36px; }
.industry-card h3 { font-size: 23px; margin-bottom: 14px; }
.industry-card p { font-size: 15px; line-height: 1.8; }

/* ─── Responsive: fix work for mobile ─── */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.1s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.2s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.3s; }
[data-reveal-stagger].revealed > * { opacity: 1; transform: translateY(0); }

/* ─── Case study result cards - add border-glow to existing class ─── */
.cs-body .cs-result-card.card-border-glow::before {
  border-radius: var(--radius-sm);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
}

@media (max-width: 900px) {
  .cs-about-bar .cs-about-grid { grid-template-columns: 1fr; gap: 20px; }
  .cs-about-bar .cs-about-meta { flex-direction: row; justify-content: center; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }

  section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid { gap: 16px; }
  .service-card { padding: 32px 24px; }
  .industries-grid { grid-template-columns: 1fr; gap: 16px; }
  .industry-card { padding: 32px 24px; }
  .industry-body .stat-grid { grid-template-columns: 1fr; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-box { padding: 48px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-brand { flex-direction: column; gap: 8px; }
  .hero-stats-mini { display: none; }

  /* Work section: stack vertically on mobile */
  .work { padding-bottom: 60px; }
  .work-track-wrap { overflow: visible; padding: 0 24px; }
  .work-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    transform: none !important;
    padding: 0;
  }
  .work-card { width: 100%; min-height: auto; }
  .work-card-content { min-height: 220px; padding: 28px 24px; }

  .cs-hero { padding: 120px 0 40px; }
  .cs-hero h1 { font-size: 28px; }
  .cs-hero .cs-subtitle { font-size: 15px; }
  .cs-hero .cs-stats { grid-template-columns: 1fr; }
  .cs-hero .cs-stat { padding: 20px 16px; }
  .cs-hero .cs-stat .cs-stat-num { font-size: 28px; }

  .cs-about-bar { padding: 24px 0; }
  .cs-about-bar .cs-about-grid { grid-template-columns: 1fr; gap: 16px; }
  .cs-about-bar h3 { font-size: 15px; }
  .cs-about-bar p { font-size: 13px; }

  .cs-body { padding: 40px 0 60px; }
  .cs-body .cs-columns { grid-template-columns: 1fr; gap: 20px; }
  .cs-body h2 { font-size: 20px; }
  .cs-body p { font-size: 14px; }
  .cs-body .cs-results-grid { grid-template-columns: 1fr; }
  .cs-body .cs-result-card { padding: 16px; flex-direction: row; }
  .cs-body .cs-result-card .result-pct { font-size: 24px; min-width: 60px; }
  .cs-body .cs-quote { padding: 20px; }
  .cs-body .cs-quote p { font-size: 14px; }
  .cs-body .cs-nav-links { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cs-body .cs-tech-stack { gap: 6px; }
  .cs-body .cs-tech-stack span { font-size: 11px; padding: 4px 10px; }

  .cs-cta { padding: 40px 0 60px; }
  .cs-cta h2 { font-size: 22px; }
  .cs-cta p { font-size: 14px; }

  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 28px; }
  .section-desc { font-size: 15px; }
  .marquee-track { gap: 30px; }
  .marquee-item { font-size: 13px; }
  .marquee-num { font-size: 20px; }
  .process-step { padding-left: 40px; }
  .step-content h3 { font-size: 18px; }
  .step-content p { font-size: 14px; }
  .testimonial-slide p { font-size: 16px; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
  .industry-stats-row { grid-template-columns: 1fr; }
  .industry-hero { padding: 140px 0 60px; }
  .industry-hero h1 { font-size: 28px; }
  .industry-hero p { font-size: 15px; }
  .industry-body { padding: 0 0 60px; }
  .industry-body h2 { font-size: 22px; }
  .industry-body h3 { font-size: 17px; }
  .industry-body p { font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cs-hero .cs-tags { flex-wrap: wrap; }
  .nav { padding: 12px 16px; }
  .logo { font-size: 18px; }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .cs-hero h1 { font-size: 24px; }
  .cs-hero .cs-stat .cs-stat-num { font-size: 24px; }
  .cs-body .cs-result-card { flex-direction: column; text-align: center; }
  .cs-body .cs-result-card .result-pct { min-width: auto; }
}

@media (hover: none) and (pointer: coarse) {
  body, a, button, input, textarea { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .card-border-glow::before { opacity: 0.5; }
  .btn-shimmer::after { display: none; }
}
