:root {
  --bg: #03050a;
  --surface: rgba(255,255,255,0.04);
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.1);
  --glass-hover: rgba(255,255,255,0.1);
  --text: #f0f2f7;
  --text-dim: rgba(240,242,247,0.55);
  --text-muted: rgba(240,242,247,0.3);
  --accent: #4f8fff;
  --accent2: #a78bfa;
  --accent3: #34d399;
  --glow: rgba(79,143,255,0.4);
  --glow2: rgba(167,139,250,0.3);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

body.light-mode {
  --bg: #f8f9fc;
  --surface: rgba(0,0,0,0.02);
  --glass: rgba(0,0,0,0.04);
  --glass-border: rgba(0,0,0,0.08);
  --glass-hover: rgba(0,0,0,0.08);
  --text: #1a1e2e;
  --text-dim: rgba(26,30,46,0.6);
  --text-muted: rgba(26,30,46,0.35);
  --accent: #3b5bdb;
  --accent2: #8b5cf6;
  --accent3: #10b981;
  --glow: rgba(59,91,219,0.3);
  --glow2: rgba(139,92,246,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  user-select: none;
}
::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(79,143,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}
body.light-mode .cursor-ring {
  border-color: rgba(59,91,219,0.4);
}
.cursor.hovering { width: 18px; height: 18px; background: var(--accent2); }
.cursor-ring.hovering { width: 56px; height: 56px; opacity: 0.5; border-color: var(--accent2); }

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Particle canvas */
#particleCanvas {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  animation: orbFloat 14s ease-in-out infinite;
}
.bg-orb-1 { width: 650px; height: 650px; background: radial-gradient(circle, #1e3a8a, transparent 70%); top: -220px; left: -120px; animation-delay: 0s; }
.bg-orb-2 { width: 550px; height: 550px; background: radial-gradient(circle, #5b21b6, transparent 70%); top: 28%; right: -160px; animation-delay: -5s; }
.bg-orb-3 { width: 420px; height: 420px; background: radial-gradient(circle, #065f46, transparent 70%); bottom: -120px; left: 32%; animation-delay: -9s; }
.bg-orb-4 { width: 380px; height: 380px; background: radial-gradient(circle, #1d4ed8, transparent 70%); bottom: 22%; left: -90px; animation-delay: -3s; }

/* Light Mode Orbs */
body.light-mode .bg-orb-1 { background: radial-gradient(circle, #3b82f6, transparent 70%); opacity: 0.08; }
body.light-mode .bg-orb-2 { background: radial-gradient(circle, #a78bfa, transparent 70%); opacity: 0.06; }
body.light-mode .bg-orb-3 { background: radial-gradient(circle, #10b981, transparent 70%); opacity: 0.06; }
body.light-mode .bg-orb-4 { background: radial-gradient(circle, #60a5fa, transparent 70%); opacity: 0.08; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(35px, -45px) scale(1.06); }
  66% { transform: translate(-25px, 32px) scale(0.94); }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
}
body.light-mode .bg-grid {
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(3,5,10,0.97);
  backdrop-filter: blur(30px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
body.light-mode .mobile-nav {
  background: rgba(248,249,252,0.98);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dim);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav-close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 1.5rem;
  color: var(--text-dim);
  cursor: pointer;
}

nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(3,5,10,0.45);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  transition: var(--transition);
}
body.light-mode nav {
  background: rgba(248,249,252,0.5);
  border-color: rgba(0,0,0,0.08);
}
nav.scrolled {
  background: rgba(3,5,10,0.8);
  box-shadow: 0 0 0 1px rgba(79,143,255,0.1), 0 24px 64px rgba(0,0,0,0.5);
}
body.light-mode nav.scrolled {
  background: rgba(248,249,252,0.85);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 24px 64px rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.25s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 0 20px rgba(79,143,255,0.35);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  box-shadow: 0 0 44px rgba(79,143,255,0.7) !important;
  transform: translateY(-1px);
}

.nav-toggle { display: none !important; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 10px rgba(79,143,255,0.3), inset 0 1px 2px rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  font-size: 0;
  animation: subtleGlow 3s ease-in-out infinite;
}
@keyframes subtleGlow {
  0%, 100% { box-shadow: 0 2px 10px rgba(79,143,255,0.3), inset 0 1px 2px rgba(255,255,255,0.2); }
  50% { box-shadow: 0 2px 14px rgba(79,143,255,0.45), inset 0 1px 2px rgba(255,255,255,0.25); }
}
.theme-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.theme-toggle::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.theme-toggle:hover {
  box-shadow: 0 4px 16px rgba(79,143,255,0.5), inset 0 1px 2px rgba(255,255,255,0.3);
  transform: translateY(-2px) scale(1.05);
  animation: none;
}
.theme-toggle:hover::before {
  opacity: 1;
}
.theme-toggle:hover::after {
  opacity: 1;
}
.theme-toggle-icon {
  font-size: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  filter: brightness(1.2) drop-shadow(0 0 2px rgba(0,0,0,0.3));
  text-shadow: 0 0 4px rgba(0,0,0,0.1);
}
.theme-toggle-icon.rotate { transform: rotate(360deg); }

body.light-mode .theme-toggle {
  box-shadow: 0 2px 10px rgba(59,91,219,0.25), inset 0 1px 2px rgba(255,255,255,0.3);
}
@keyframes subtleGlowLight {
  0%, 100% { box-shadow: 0 2px 10px rgba(59,91,219,0.25), inset 0 1px 2px rgba(255,255,255,0.3); }
  50% { box-shadow: 0 2px 14px rgba(59,91,219,0.35), inset 0 1px 2px rgba(255,255,255,0.4); }
}
body.light-mode .theme-toggle {
  animation: subtleGlowLight 3s ease-in-out infinite;
}
body.light-mode .theme-toggle:hover {
  box-shadow: 0 4px 16px rgba(59,91,219,0.4), inset 0 1px 2px rgba(255,255,255,0.4);
  animation: none;
}

/* ============================================================
   LAYOUT
============================================================ */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 10vw, 130px) 24px;
}
.container { max-width: 1120px; margin: 0 auto; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.section-title .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 560px;
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(79,143,255,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover {
  border-color: rgba(79,143,255,0.25);
  box-shadow: 0 0 0 1px rgba(79,143,255,0.1), 0 30px 80px rgba(0,0,0,0.4);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(79,143,255,0.4);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(79,143,255,0.7);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--text);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  border-color: rgba(79,143,255,0.4);
  background: rgba(79,143,255,0.08);
  transform: translateY(-2px);
}

.arrow-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; color: currentColor; }
body.light-mode .btn-primary .arrow-icon {
  color: #fff;
}
body.light-mode .btn-ghost .arrow-icon {
  color: #1a1e2e;
}
.btn-primary:hover .arrow-icon,
.btn-ghost:hover .arrow-icon { transform: translateX(4px); }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(79,143,255,0.3);
  background: rgba(79,143,255,0.08);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
  overflow: hidden;
}
.hero-title .line-1,
.hero-title .line-2,
.hero-title .line-3 {
  display: block;
  animation: heroLineIn 1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title .line-1 { animation-delay: 0.1s; }
.hero-title .line-2 { 
  animation-delay: 0.2s;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-3 { animation-delay: 0.3s; }

@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(60px) skewY(3deg); }
  to { opacity: 1; transform: none; }
}

.hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeUp 1s 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 1s 0.6s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

.hero-stats {
  display: flex;
  gap: 48px;
  animation: fadeUp 1s 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
  font-family: var(--font-mono);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1.2s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-orb-container {
  position: relative;
  width: 380px; height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease-out;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-orb-outer {
  width: 380px; height: 380px;
  background: conic-gradient(from 0deg, transparent 0%, rgba(79,143,255,0.15) 25%, rgba(167,139,250,0.15) 50%, transparent 75%);
  border: 1px solid rgba(79,143,255,0.15);
  animation: orbSpin 20s linear infinite;
}
.hero-orb-mid {
  width: 280px; height: 280px;
  background: conic-gradient(from 180deg, transparent 0%, rgba(167,139,250,0.2) 30%, rgba(79,143,255,0.2) 60%, transparent 90%);
  border: 1px solid rgba(167,139,250,0.2);
  animation: orbSpin 14s linear infinite reverse;
}
.hero-orb-inner {
  width: 190px; height: 190px;
  background: radial-gradient(circle at 35% 35%, rgba(167,139,250,0.4), rgba(79,143,255,0.3) 50%, rgba(3,5,10,0.5));
  border: 1px solid rgba(79,143,255,0.3);
  animation: orbSpin 8s linear infinite;
  box-shadow: 0 0 80px rgba(79,143,255,0.3), inset 0 0 40px rgba(167,139,250,0.2);
}
.hero-orb-core {
  width: 90px; height: 90px;
  background: radial-gradient(circle, #4f8fff, #a78bfa);
  box-shadow: 0 0 60px rgba(79,143,255,0.8), 0 0 120px rgba(167,139,250,0.4);
  display: flex; align-items: center; justify-content: center;
  animation: coreGlow 3s ease-in-out infinite;
}
.hero-orb-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}
@keyframes orbSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes coreGlow {
  0%, 100% { box-shadow: 0 0 60px rgba(79,143,255,0.8), 0 0 120px rgba(167,139,250,0.4); }
  50% { box-shadow: 0 0 100px rgba(79,143,255,1), 0 0 180px rgba(167,139,250,0.7); }
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(10,14,25,0.85);
  border: 1.5px solid rgba(79,143,255,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  backdrop-filter: blur(20px);
  min-width: 160px;
  animation: floatY 4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(79,143,255,0.15);
}
body.light-mode .float-card {
  background: rgba(248,249,252,0.9);
  backdrop-filter: blur(20px);
}
.float-card-1 {
  top: 10px;
  right: -20px;
  animation-delay: 0s;
  border-color: #4f8fff;
  box-shadow: 0 0 30px rgba(79,143,255,0.25);
}
body.light-mode .float-card-1 {
  border-color: #3b5bdb;
  box-shadow: 0 0 30px rgba(59,91,219,0.15);
}
.float-card-1 .fc-value { background: linear-gradient(135deg, #4f8fff, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
body.light-mode .float-card-1 .fc-value { background: linear-gradient(135deg, #1e40af, #3b5bdb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.float-card-2 {
  bottom: 60px;
  left: -30px;
  animation-delay: -1.5s;
  border-color: #a78bfa;
  box-shadow: 0 0 30px rgba(167,139,250,0.25);
}
body.light-mode .float-card-2 {
  border-color: #8b5cf6;
  box-shadow: 0 0 30px rgba(139,92,246,0.15);
}
.float-card-2 .fc-value { background: linear-gradient(135deg, #a78bfa, #d8b4fe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
body.light-mode .float-card-2 .fc-value { background: linear-gradient(135deg, #6d28d9, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.float-card-3 {
  top: 50%;
  right: -40px;
  animation-delay: -3s;
  border-color: #34d399;
  box-shadow: 0 0 30px rgba(52,211,153,0.25);
}
body.light-mode .float-card-3 {
  border-color: #10b981;
  box-shadow: 0 0 30px rgba(16,185,129,0.15);
}
.float-card-3 .fc-value { background: linear-gradient(135deg, #34d399, #6ee7b7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
body.light-mode .float-card-3 .fc-value { background: linear-gradient(135deg, #059669, #10b981); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.fc-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.fc-value { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text); }
.fc-up { font-size: 0.7rem; color: var(--accent3); font-weight: 600; }

/* Orbit dots */
.orbit-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

/* ============================================================
   MARQUEE / TICKER
============================================================ */
.marquee-section {
  position: relative;
  z-index: 1;
  padding: 32px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-card-item {
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}
.about-card-item:hover { transform: translateX(8px); }
.about-card-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.about-card-icon.blue { filter: drop-shadow(0 0 10px rgba(79,143,255,0.6)); }
.about-card-icon.purple { filter: drop-shadow(0 0 10px rgba(167,139,250,0.6)); }
.about-card-icon.green { filter: drop-shadow(0 0 10px rgba(52,211,153,0.6)); }
.about-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.about-card-text { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

.about-values { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.value-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.value-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(79,143,255,0.6);
}

.services-carousel {
  position: relative;
  margin-top: 52px;
}
.services-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
}
.services-grid::-webkit-scrollbar { display: none; }
.service-card {
  min-width: 300px;
  max-width: 300px;
  padding: 32px;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.s1 { background: rgba(79,143,255,0.12); }
.s2 { background: rgba(167,139,250,0.12); }
.s3 { background: rgba(52,211,153,0.12); }
.s4 { background: rgba(249,115,22,0.12); }
.s5 { background: rgba(244,63,94,0.12); }
.s6 { background: rgba(6,182,212,0.12); }

.service-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-desc { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  letter-spacing: 0.05em;
}

.services-arrow, .team-arrow {
  position: absolute;
  top: 50%; z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(15,20,35,0.9);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
body.light-mode .services-arrow, body.light-mode .team-arrow {
  background: rgba(248,249,252,0.95);
  border-color: rgba(0,0,0,0.1);
  color: #1a1e2e;
}
.services-arrow:hover, .team-arrow:hover {
  border-color: rgba(79,143,255,0.5);
  box-shadow: 0 0 20px rgba(79,143,255,0.3);
}
body.light-mode .services-arrow:hover, body.light-mode .team-arrow:hover {
  border-color: rgba(59,91,219,0.5);
  box-shadow: 0 0 20px rgba(59,91,219,0.2);
}
.services-arrow svg, .team-arrow svg { width: 18px; height: 18px; }
.services-arrow-prev, .team-arrow-prev { left: -22px; transform: translateY(-50%); }
.services-arrow-next, .team-arrow-next { right: -22px; transform: translateY(-50%); }
.services-arrow:disabled, .team-arrow:disabled { opacity: 0.3; pointer-events: none; }

.why-header { text-align: center; margin-bottom: 60px; }
.why-header .section-label { justify-content: center; }
.why-header .section-label::before { display: none; }
.why-header .section-sub { margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  padding: 36px 28px;
  text-align: center;
}
.why-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.why-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.65; }

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.projects-header > a {
  padding: 10px 20px;
  font-size: 0.95rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.project-card {
  cursor: pointer;
  overflow: hidden;
}
.project-card:nth-child(1) { grid-column: 1 / 8; }
.project-card:nth-child(2) { grid-column: 8 / 13; }
.project-card:nth-child(3) { grid-column: 1 / 5; }
.project-card:nth-child(4) { grid-column: 5 / 9; }
.project-card:nth-child(5) { grid-column: 9 / 13; }

.project-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.project-card:nth-child(1) .project-thumb { height: 290px; }

.project-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
  filter: brightness(0.75) saturate(0.9);
}
.project-card:hover .project-thumb-img {
  transform: scale(1.08);
  filter: brightness(0.9) saturate(1.1);
}

.project-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,5,10,0.95) 0%, transparent 60%);
  pointer-events: none;
}

/* Hover reveal overlay */
.project-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(79,143,255,0.12);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.project-card:hover .project-hover-overlay { opacity: 1; }
.project-hover-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.project-card:hover .project-hover-icon { transform: scale(1); }
.project-hover-icon svg { width: 20px; height: 20px; }

.project-info { padding: 20px 24px 24px; }
.project-meta { font-family: var(--font-mono); font-size: 0.65rem; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; }
.project-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.project-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

.process-header { text-align: center; margin-bottom: 60px; }
.process-header .section-label { justify-content: center; }
.process-header .section-label::before { display: none; }
.process-header .section-sub { margin: 0 auto; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border) 20%, var(--glass-border) 80%, transparent);
  z-index: 0;
}
.process-step {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(79,143,255,0.3);
  background: rgba(79,143,255,0.08);
}
.step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 0.85rem; color: var(--text-dim); line-height: 1.65; }

.team-header { text-align: center; margin-bottom: 52px; }
.team-header .section-label { justify-content: center; }
.team-header .section-label::before { display: none; }
.team-header .section-sub { margin: 0 auto; }

.team-carousel { position: relative; }
.team-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.team-grid::-webkit-scrollbar { display: none; }
.team-card {
  min-width: 250px;
  max-width: 250px;
  padding: 28px 24px;
  scroll-snap-align: start;
  flex-shrink: 0;
  text-align: center;
}
.team-card.featured { min-width: 280px; max-width: 280px; }

.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 2px solid rgba(79,143,255,0.3);
  box-shadow: 0 0 24px rgba(79,143,255,0.2);
  transition: var(--transition);
}
.team-card.featured .team-avatar { width: 110px; height: 110px; }
.team-card:hover .team-avatar {
  border-color: rgba(79,143,255,0.7);
  box-shadow: 0 0 40px rgba(79,143,255,0.4);
  transform: scale(1.05);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.team-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-family: var(--font-mono); font-size: 0.68rem; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.team-bio { font-size: 0.84rem; color: var(--text-dim); line-height: 1.65; }

.cta-box {
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px);
  text-align: center;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(79,143,255,0.15);
  background: rgba(255,255,255,0.04);
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,143,255,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ctaGlow 4s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.15); }
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
  position: relative;
}
.cta-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 44px;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-copy { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.08em; }

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), #f472b6);
  z-index: 9999;
  transition: width 0.1s;
  box-shadow: 0 0 10px rgba(79,143,255,0.6);
}

.magnetic { display: inline-block; }

.glitch {
  position: relative;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glitch::before {
  animation: glitch1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch::after {
  animation: glitch2 4s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
@keyframes glitch1 {
  0%, 90%, 100% { transform: none; opacity: 0; }
  91% { transform: translateX(-3px); opacity: 0.8; filter: hue-rotate(90deg); }
  93% { transform: translateX(3px); }
  95% { transform: none; opacity: 0; }
}
@keyframes glitch2 {
  0%, 92%, 100% { transform: none; opacity: 0; }
  93% { transform: translateX(3px); opacity: 0.8; filter: hue-rotate(-90deg); }
  95% { transform: translateX(-3px); }
  97% { transform: none; opacity: 0; }
}

.typed-cursor { display: inline-block; width: 3px; height: 1em; background: var(--accent); margin-left: 3px; vertical-align: middle; animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.is-dragging { cursor: grabbing !important; }
.drag-hint {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .container { padding: 20px; }
  .hero-badge { gap: 10px; }
  .float-card { font-size: 0.9rem; }
}

@media (max-width: 900px) {
  :root {
    --text-size-display: 2.8rem;
    --text-size-h1: 2.2rem;
    --text-size-h2: 1.8rem;
    --spacing: 16px;
  }

  body { font-size: 15px; }
  .container { padding: 18px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-section { padding: 60px 0; }
  .hero-orb-container { width: 240px; height: 240px; }
  .hero-orb-outer { width: 240px; height: 240px; }
  .hero-orb-mid { width: 180px; height: 180px; }
  .hero-orb-inner { width: 120px; height: 120px; }
  .float-card-1 { right: -20px; top: -5px; width: 140px; height: 140px; }
  .float-card-2 { left: -15px; bottom: 30px; }
  .float-card-3 { display: none; }
  .hero-title { font-size: 2.4rem; }
  .hero-badge { gap: 8px; font-size: 0.85rem; }
  .hero-stats { gap: 30px; }
  .hero-actions { gap: 12px; }

  .btn { padding: 11px 22px; font-size: 0.95rem; }
  .theme-toggle { width: 30px; height: 30px; border-radius: 7px; }
  .theme-toggle-icon { font-size: 1rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content h2 { font-size: 1.8rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-timeline::before { display: none; }
  .projects-grid { display: flex; flex-direction: column; gap: 20px; }
  .projects-grid .project-card { width: 100%; }
  .project-title { font-size: 1.3rem; }
  .marquee-content { gap: 40px; }

  .navbar { padding: 12px 18px; }
  .logo { font-size: 1.4rem; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 18px; font-size: 0.9rem; }
  .nav-toggle { display: none !important; width: 28px; height: 28px; }

  .mobile-nav { width: 100%; }
  .mobile-nav-link { padding: 12px 16px; }

  .why-card, .process-card { padding: 24px; }
  .process-number { font-size: 2.5rem; }
  .team-member h3 { font-size: 1.1rem; }
}


@media (max-width: 768px) {
  :root {
    --text-size-display: 2.2rem;
    --text-size-h1: 1.8rem;
    --text-size-h2: 1.5rem;
    --spacing: 14px;
  }

  body { font-size: 14px; line-height: 1.6; }
  .container { padding: 16px; }
  .section-title { font-size: 1.8rem; margin-bottom: 32px; }
  .section-subtitle { font-size: 1.2rem; }

  .hero-section { padding: 50px 0; }
  .hero-title { font-size: 2rem; line-height: 1.3; }
  .hero-description { font-size: 0.95rem; }
  .hero-badge { font-size: 0.8rem; padding: 6px 12px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stats-item { padding: 16px; }
  .stat-value { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn { width: 100%; padding: 10px 20px; font-size: 0.9rem; }

  .float-card { padding: 14px; font-size: 0.8rem; }
  .float-card-1 { width: 120px; height: 120px; right: -10px; top: 0; }
  .float-card-2 { width: 130px; height: 130px; left: -10px; bottom: 40px; }

  .navbar { padding: 10px 16px; }
  .logo { font-size: 1.2rem; }
  .nav-toggle { display: none !important; width: 26px; height: 26px; }
  .theme-toggle { width: 28px; height: 28px; }
  .theme-toggle-icon { font-size: 0.95rem; }

  .about-section { padding: 40px 0; }
  .about-grid { gap: 30px; }
  .about-content h2 { font-size: 1.6rem; }
  .services-carousel { gap: 16px; }
  .service-card { padding: 20px; }
  .service-icon { font-size: 2rem; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 20px; border-radius: 16px; }
  .why-card h3 { font-size: 1.2rem; }
  .why-value { font-size: 2rem; }

  .projects-header h2 { font-size: 1.8rem; }
  .project-card { padding: 16px; border-radius: 12px; }
  .project-title { font-size: 1.2rem; }
  .project-category { font-size: 0.75rem; }

  .process-timeline { grid-template-columns: 1fr; gap: 16px; }
  .process-card { padding: 20px; border-radius: 12px; }
  .process-number { font-size: 2rem; }

  .team-carousel { gap: 14px; }
  .team-member { padding: 16px; }
  .team-member img { width: 60px; height: 60px; }
  .team-member h3 { font-size: 1rem; margin-top: 8px; }

  .cta-content h2 { font-size: 1.8rem; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions .btn { width: 100%; }

  .footer-content { grid-template-columns: 1fr; gap: 20px; }
  .footer-text { font-size: 0.85rem; }
  .marquee-content { gap: 30px; font-size: 1.4rem; }
}

@media (max-width: 480px) {
  :root {
    --text-size-display: 1.8rem;
    --text-size-h1: 1.5rem;
    --text-size-h2: 1.2rem;
    --spacing: 12px;
  }

  body { font-size: 13px; line-height: 1.5; }
  .container { padding: 14px; max-width: 100%; }
  .section-title { font-size: 1.6rem; margin-bottom: 24px; }
  .section-subtitle { font-size: 1rem; }

  #scrollProgress { height: 2px; }

  .hero-section { padding: 40px 0; min-height: 600px; }
  .hero-content { gap: 16px; }
  .hero-title { font-size: 1.7rem; line-height: 1.2; }
  .hero-description { font-size: 0.9rem; line-height: 1.4; }
  .hero-badge { font-size: 0.75rem; padding: 5px 10px; gap: 6px; }
  .hero-badge span { display: inline-block; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
  .hero-stats-item { flex: 1; min-width: calc(50% - 6px); padding: 12px; }
  .stat-value { font-size: 1.4rem; }
  .stat-label { font-size: 0.75rem; }
  .hero-actions { gap: 8px; }
  .btn { padding: 9px 18px; font-size: 0.85rem; border-radius: 8px; }
  .btn-primary { width: 100%; }

  .float-card { padding: 12px; font-size: 0.75rem; display: none; }
  .float-card-1 { width: 110px; height: 110px; right: -5px; top: 0; }
  .float-card-2 { width: 115px; height: 115px; left: -5px; bottom: 25px; }
  .float-card-3 { width: 100px; height: 100px; right: -5px; top: 50%; transform: translateY(-50%); }

  .navbar { padding: 8px 14px; height: 50px; }
  .logo { font-size: 1.1rem; }
  .nav-toggle { display: none !important; width: 24px; height: 24px; }
  .theme-toggle { width: 30px; height: 30px; border-radius: 7px; padding: 5px; }
  .theme-toggle-icon { font-size: 0.95rem; }

  .mobile-nav { top: 50px; }
  .mobile-nav-link { padding: 10px 14px; font-size: 0.9rem; }

  .about-section { padding: 32px 0; }
  .about-grid { gap: 24px; }
  .about-content h2 { font-size: 1.5rem; margin-bottom: 12px; }
  .about-text { font-size: 0.85rem; line-height: 1.5; margin-bottom: 12px; }
  .about-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-card { padding: 12px; border-radius: 8px; }
  .about-card h3 { font-size: 0.9rem; }
  .about-card p { font-size: 0.75rem; }

  .services-carousel { gap: 12px; overflow-x: auto; padding-bottom: 8px; }
  .service-card { padding: 16px; min-width: 280px; border-radius: 12px; }
  .service-icon { font-size: 1.8rem; }
  .service-title { font-size: 1.1rem; margin: 8px 0; }
  .service-description { font-size: 0.8rem; }
  .services-arrow { width: 32px; height: 32px; font-size: 0.8rem; }

  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 16px; border-radius: 12px; }
  .why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .why-value { font-size: 1.8rem; margin-bottom: 4px; }
  .why-text { font-size: 0.8rem; }

  .projects-header { margin-bottom: 24px; flex-direction: column; align-items: flex-start; }
  .projects-header h2 { font-size: 1.6rem; margin-bottom: 12px; }
  .projects-header > a { padding: 8px 16px; font-size: 0.8rem; width: 100%; text-align: center; }
  .projects-grid { gap: 12px; }
  .project-card { padding: 12px; border-radius: 10px; }
  .project-image { height: 150px; border-radius: 8px; }
  .project-title { font-size: 1rem; margin: 8px 0 4px; }
  .project-category { font-size: 0.7rem; }
  .project-hover-overlay { display: none; }

  .process-timeline { grid-template-columns: 1fr; gap: 12px; }
  .process-card { padding: 16px; border-radius: 10px; }
  .process-number { font-size: 1.6rem; margin-bottom: 8px; }
  .process-title { font-size: 1.1rem; margin-bottom: 6px; }
  .process-description { font-size: 0.8rem; }

  .team-carousel { gap: 12px; padding-bottom: 8px; }
  .team-member { padding: 12px; min-width: 100px; text-align: center; }
  .team-member img { width: 50px; height: 50px; }
  .team-member h3 { font-size: 0.85rem; margin-top: 6px; }
  .team-member p { font-size: 0.7rem; }
  .team-arrow { width: 28px; height: 28px; font-size: 0.7rem; }

  .cta-section { padding: 32px 0; }
  .cta-content h2 { font-size: 1.6rem; margin-bottom: 12px; line-height: 1.2; }
  .cta-description { font-size: 0.9rem; margin-bottom: 16px; }
  .cta-actions { flex-direction: column; gap: 8px; }
  .cta-actions .btn { width: 100%; }

  .footer-section { padding: 24px 0; }
  .marquee-content { gap: 20px; font-size: 1.2rem; }
  .footer-content { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .footer-col h3 { font-size: 0.95rem; margin-bottom: 8px; }
  .footer-col p { font-size: 0.8rem; }
  .footer-col a { font-size: 0.8rem; }
  .footer-bottom { font-size: 0.75rem; padding-top: 16px; }
}


@media (hover: none) and (pointer: coarse) {
  .btn:hover { transform: none; }
  .theme-toggle:hover { transform: none; scale: 1; }
  .btn:active { transform: scale(0.98); }
  .theme-toggle:active { transform: scale(0.95); }
  .service-card:hover { transform: none; }
  .project-card:hover { transform: none; }
  .why-card:hover { transform: none; }

  .btn { padding: 12px 24px; }
  .theme-toggle { width: 40px; height: 40px; }
  .services-arrow, .team-arrow { width: 44px; height: 44px; }
}
