:root {
  --bg: #000000;
  --surface: #08081a;
  --surface2: #0c0c24;
  --text: #f0f2fa;
  --muted: #9498b8;
  --cyan: #00c8ff;
  --cyan-bright: #00e5ff;
  --purple: #7c3aed;
  --purple-bright: #a855f7;
  --blue: #0088ff;
  --deep-purple: #3b0d99;
  --line: rgba(0, 200, 255, 0.2);
  --line-purple: rgba(124, 58, 237, 0.2);
  --glow-cyan: rgba(0, 229, 255, 0.6);
  --glow-purple: rgba(124, 58, 237, 0.5);
  --gradient: linear-gradient(135deg, var(--cyan-bright), var(--blue), var(--purple), var(--purple-bright));
  --gradient-btn: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 40%, var(--purple) 100%);
  --glass: rgba(8, 8, 26, 0.5);
  --glass-border: rgba(0, 200, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Exo 2', ui-sans-serif, system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, .brand span, .eyebrow, .pill, .mini-stats strong,
.metrics b, .feature span, .step b, .nav-cta, .why-number {
  font-family: 'Orbitron', sans-serif;
}

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

/* Glossy sheen overlay for body */
body::before {
  content: ''; position: fixed; top: 0; left: 0; right: 0; height: 60vh;
  background: none;
  pointer-events: none; z-index: 0;
}

#particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

/* ====== NAVIGATION — Glass Premium ====== */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 6vw;
  border-bottom: 1px solid rgba(0,229,255,0.06);
  backdrop-filter: blur(24px) saturate(1.8);
  background: rgba(5,5,8,0.75);
  transition: all 0.4s ease;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 1px 0 rgba(0,229,255,0.05) inset;
}
.brand {
  display: flex; align-items: center; gap: 18px;
  text-decoration: none; color: #fff; font-weight: 900;
  font-size: 22px; letter-spacing: 0.12em; text-transform: uppercase;
  position: relative;
}
.brand img {
  width: 58px; height: 58px; object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(0,212,255,0.6)) drop-shadow(0 0 30px rgba(124,58,237,0.3));
  animation: brand-logo-pulse 3s ease-in-out infinite;
  border: none;
  padding: 0;
  background: none;
  border-radius: 0;
}
@keyframes brand-logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(0,212,255,0.6)) drop-shadow(0 0 30px rgba(124,58,237,0.3)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 25px rgba(0,229,255,0.8)) drop-shadow(0 0 45px rgba(124,58,237,0.5)); transform: scale(1.05); }
}
.brand span {
  background: linear-gradient(90deg, var(--cyan-bright) 0%, var(--blue) 25%, var(--purple-bright) 50%, var(--cyan-bright) 75%, var(--blue) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: brand-text-shimmer 4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(0,229,255,0.3));
  position: relative;
}
.brand span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-bright), var(--purple-bright), var(--cyan-bright));
  background-size: 200% 100%;
  animation: brand-underline-flow 3s linear infinite;
  border-radius: 2px;
  opacity: 0.7;
}
@keyframes brand-text-shimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}
@keyframes brand-underline-flow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.brand:hover img {
  animation: brand-logo-pulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(0,229,255,0.9)) drop-shadow(0 0 50px rgba(124,58,237,0.5));
}
.brand:hover span {
  animation: brand-text-shimmer 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(0,229,255,0.5));
}
.brand:hover span::after {
  opacity: 1;
  height: 3px;
  box-shadow: 0 0 10px rgba(0,229,255,0.5), 0 0 20px rgba(124,58,237,0.3);
}

.nav-links { display: flex; gap: 6px; position: relative; }
.nav-pill-bg {
  position: absolute;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(124,58,237,0.08));
  border: 1px solid rgba(0,229,255,0.25);
  box-shadow: 0 0 20px rgba(0,229,255,0.1), 0 0 40px rgba(124,58,237,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.nav-pill-bg.active {
  opacity: 1;
}
.nav a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color 0.3s;
  position: relative; z-index: 2;
  padding: 8px 18px;
  border-radius: 999px;
}
.nav a:hover { color: #fff; }
.nav a::after { display: none; }
.nav-cta {
  border: 1px solid rgba(0,200,255,0.3); border-radius: 999px; padding: 12px 28px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  background: linear-gradient(135deg, rgba(0,200,255,0.08), rgba(124,58,237,0.06));
  color: #fff; transition: all 0.4s;
  position: relative; overflow: hidden;
  box-shadow: 0 0 15px rgba(0,229,255,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav-cta::before {
  content: ''; position: absolute; inset: -1px; border-radius: 999px;
  background: var(--gradient-btn); opacity: 0; transition: opacity 0.4s; z-index: -1;
}
.nav-cta:hover { color: #fff; border-color: transparent; text-shadow: 0 0 10px rgba(0,229,255,0.5); }
.nav-cta:hover::before { opacity: 1; }
.menu { display: none; background: none; color: #fff; border: 0; font-size: 26px; cursor: pointer; }

/* ====== GENERAL ====== */
.section-pad { padding: 60px 6vw; position: relative; }
.section-head { text-align: center; max-width: 750px; margin: 0 auto 40px; }
.content h2, .section-head h2, .cta h2 {
  font-size: clamp(24px, 3.8vw, 48px); line-height: 1.15;
  margin: 18px 0; letter-spacing: 0.02em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--cyan-bright) 0%, var(--blue) 40%, var(--purple-bright) 70%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.content p, .section-head p:not(.pill), .cta p {
  color: var(--muted); line-height: 1.9; font-size: 16px;
}
.eyebrow, .pill {
  display: inline-block; color: var(--cyan-bright); border: 1px solid rgba(0,229,255,0.2);
  border-radius: 999px; padding: 10px 20px; background: rgba(0,229,255,0.04);
  letter-spacing: 0.15em; text-transform: uppercase; font-size: 10px; font-weight: 700;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 12px rgba(0,229,255,0.06), inset 0 1px 0 rgba(255,255,255,0.03);
  animation: pill-glow 3s ease-in-out infinite;
}
@keyframes pill-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(0,229,255,0.06), inset 0 1px 0 rgba(255,255,255,0.03); }
  50% { box-shadow: 0 0 20px rgba(0,229,255,0.12), inset 0 1px 0 rgba(255,255,255,0.06); }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px; padding: 16px 32px; text-decoration: none;
  font-weight: 700; font-size: 13px; letter-spacing: 0.03em;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1); text-transform: uppercase;
}
.primary {
  background: var(--gradient-btn); color: #fff;
  box-shadow: 0 8px 32px rgba(0,200,255,0.3), 0 4px 20px rgba(124,58,237,0.2),
              inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.7s;
}
.primary:hover::after { left: 150%; }
.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 50px rgba(0,229,255,0.4), 0 8px 30px rgba(124,58,237,0.3),
              inset 0 1px 0 rgba(255,255,255,0.2);
}
.ghost {
  border: 1px solid rgba(0,200,255,0.12); color: #fff;
  background: rgba(0,200,255,0.03); backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.ghost:hover {
  border-color: rgba(0,229,255,0.25); background: rgba(0,200,255,0.08);
  box-shadow: 0 0 25px rgba(0,229,255,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ====== HERO — Luxurious ====== */
.hero {
  min-height: 100vh; display: grid; align-items: center;
  position: relative; overflow: hidden;
  background: #000000;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: none;
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none; z-index: 3;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: 50px; position: relative; z-index: 2;
}
.hero h1 {
  font-size: clamp(22px, 3vw, 42px); line-height: 1.2; margin: 28px 0;
  text-transform: uppercase; letter-spacing: 0.02em; font-weight: 900;
  background: linear-gradient(90deg, var(--cyan-bright) 0%, var(--blue) 35%, var(--purple-bright) 65%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0,229,255,0.15));
}
.lead { font-size: 17px; color: var(--muted); max-width: 540px; line-height: 1.9; }
.actions { display: flex; gap: 18px; margin: 40px 0; }
.mini-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.mini-stats div {
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,10,20,0.6); backdrop-filter: blur(10px);
  border-radius: 18px; padding: 20px 24px; min-width: 135px;
  transition: all 0.4s ease;
}
.mini-stats div:hover {
  border-color: var(--line);
  box-shadow: 0 0 30px rgba(0,212,255,0.08);
  transform: translateY(-2px);
}
.mini-stats strong {
  display: block; font-size: 26px; margin-bottom: 4px;
  background: linear-gradient(135deg, var(--cyan-bright), var(--blue), var(--purple-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 8px rgba(0,229,255,0.2));
}
.mini-stats span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; }

/* Hero Art — Floating Logo */
.hero-art { position: relative; display: grid; place-items: center; transition: all 0.3s ease; }
.hero-img {
  width: min(620px, 110%); border-radius: 0;
  box-shadow: none;
  animation: hero-float 6s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes hero-float {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  25% { transform: translateY(-10px) scale(1.02) rotate(0.5deg); }
  50% { transform: translateY(-18px) scale(1.03) rotate(0deg); }
  75% { transform: translateY(-8px) scale(1.01) rotate(-0.5deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.logo-halo {
  position: absolute; width: 90%; aspect-ratio: 1; border-radius: 50%;
  background: none;
  filter: blur(50px); animation: pulse-glow 5s ease-in-out infinite;
}
/* Second halo ring */
.hero-art::before {
  content: ''; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(0,229,255,0.08);
  animation: ring-expand 4s ease-in-out infinite;
}
@keyframes ring-expand {
  0%,100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0; }
}
@keyframes pulse-glow { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.08)} }
.orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0; animation: drift 12s ease-in-out infinite; }
.orb-one { width: 500px; height: 500px; background: var(--cyan-bright); left: -150px; top: 10%; }
.orb-two { width: 450px; height: 450px; background: var(--deep-purple); right: -120px; top: 25%; animation-delay: -6s; }
@keyframes drift { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(30px,-30px) scale(1.05)} }

/* ====== STRIP — Marquee + Glow Pulse ====== */
.strip {
  position: relative; z-index: 4; margin: -40px 6vw 60px; padding: 26px 0;
  border: 1px solid rgba(255,255,255,0.06); border-radius: 24px;
  background: rgba(10,10,20,0.5); backdrop-filter: blur(20px);
  overflow: hidden;
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
}
.strip::before {
  content: '';
  position: absolute;
  top: 0; left: -30%; width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.06), rgba(124,58,237,0.04), transparent);
  animation: strip-scan-sweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes strip-scan-sweep {
  0% { left: -30%; }
  100% { left: 100%; }
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.strip span {
  position: relative; padding: 0 16px; white-space: nowrap;
  animation: strip-pulse-glow 3s ease-in-out infinite;
  transition: all 0.3s;
}
.strip span:nth-child(1) { animation-delay: 0s; }
.strip span:nth-child(2) { animation-delay: 0.4s; }
.strip span:nth-child(3) { animation-delay: 0.8s; }
.strip span:nth-child(4) { animation-delay: 1.2s; }
.strip span:nth-child(5) { animation-delay: 1.6s; }
.strip span:nth-child(6) { animation-delay: 2s; }
.strip span:nth-child(7) { animation-delay: 0s; }
.strip span:nth-child(8) { animation-delay: 0.4s; }
.strip span:nth-child(9) { animation-delay: 0.8s; }
.strip span:nth-child(10) { animation-delay: 1.2s; }
.strip span:nth-child(11) { animation-delay: 1.6s; }
.strip span:nth-child(12) { animation-delay: 2s; }
@keyframes strip-pulse-glow {
  0%, 100% {
    color: rgba(255,255,255,0.5);
    text-shadow: none;
  }
  50% {
    color: #fff;
    text-shadow: 0 0 10px rgba(0,229,255,0.5), 0 0 20px rgba(0,229,255,0.2);
  }
}
.strip span:hover {
  color: #00e5ff;
  text-shadow: 0 0 15px rgba(0,229,255,0.7), 0 0 30px rgba(0,229,255,0.3);
  transform: scale(1.08);
}
.strip span::before { content: '◆'; position: absolute; left: -6px; color: var(--cyan-bright); font-size: 8px; top: 50%; transform: translateY(-50%); }
.strip span:first-child::before { display: none; }
.strip span:nth-child(7)::before { display: none; }
.marquee-track a { text-decoration: none; color: inherit; }
.marquee-track a:first-child span::before { display: none; }
.marquee-track a:nth-child(9) span::before { display: none; }

/* ====== ABOUT — Premium Split ====== */
.about-section { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-stack { position: relative; z-index: 2; }
.about-img-main {
  width: 100%; max-width: 480px; border-radius: 28px;
  border: 1px solid rgba(0,212,255,0.12);
  box-shadow: 0 50px 100px rgba(0,0,0,0.6), 0 0 50px rgba(0,212,255,0.06);
  transition: all 0.5s ease;
}
.about-img-main:hover {
  box-shadow: 0 50px 100px rgba(0,0,0,0.6), 0 0 80px rgba(0,212,255,0.12);
  transform: scale(1.02);
}
.about-img-float {
  position: absolute; bottom: -30px; right: -30px; width: 170px;
  border-radius: 20px; border: 1px solid rgba(139,92,246,0.2);
  box-shadow: 0 20px 60px rgba(139,92,246,0.15);
  animation: float 5s ease-in-out infinite; animation-delay: -2s;
}
.about-ellipse {
  position: absolute; top: -50px; left: -50px; width: 220px; opacity: 0.25; z-index: 0;
}
.about-ellipse img { width: 100%; }
.metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 32px; }
.metrics div {
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,10,20,0.6); backdrop-filter: blur(10px);
  border-radius: 18px; padding: 20px; transition: all 0.4s;
}
.metrics div:hover { border-color: var(--line); transform: translateY(-2px); }
.metrics b {
  display: block; font-size: 24px; margin-bottom: 4px;
  background: linear-gradient(135deg, var(--cyan-bright), var(--blue), var(--purple-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 6px rgba(0,229,255,0.15));
}
.metrics small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; }

/* ====== SERVICES — Luxe Cards ====== */
.services-section { position: relative; overflow: hidden; }
.services-bg-img { position: absolute; top: 0; right: 0; width: 300px; opacity: 0.04; pointer-events: none; z-index: 0; }
.services-bg-img img { width: 100%; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
}
.service-card {
  border: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(12,12,36,0.6), rgba(4,4,8,0.8));
  border-radius: 28px; padding: 36px 30px; transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden; backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-bright), var(--purple-bright), transparent);
  opacity: 0; transition: opacity 0.4s;
  animation: scan-line 3s linear infinite;
}
.service-card::after {
  content: ''; position: absolute;
  top: var(--mouse-y, 50%); left: var(--mouse-x, 50%);
  width: 300px; height: 300px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,212,255,0.06), transparent 70%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  border-color: rgba(0,229,255,0.2); transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 50px rgba(0,229,255,0.06),
              inset 0 1px 0 rgba(255,255,255,0.08);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(124,58,237,0.08));
  border: 1px solid rgba(0,229,255,0.2);
  display: grid; place-items: center; margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(0,229,255,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
.service-icon svg { width: 26px; height: 26px; color: var(--cyan-bright); }
.service-card h3 { font-size: 16px; margin-bottom: 12px; color: #fff; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.8; }

/* ====== AI SHOWCASE ====== */
.ai-showcase {
  overflow: hidden;
  padding-bottom: 40px;
  background: radial-gradient(ellipse at 70% 50%, rgba(139,92,246,0.04), transparent 60%);
}
.ai-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ai-features-list { list-style: none; padding: 0; margin: 28px 0 36px; }
.ai-features-list li {
  padding: 14px 0; padding-left: 28px; position: relative;
  color: var(--muted); font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.ai-features-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-bright), var(--purple-bright));
  box-shadow: 0 0 12px var(--glow-cyan), 0 0 4px var(--cyan-bright);
}
.ai-showcase-visual { position: relative; }
.showcase-img {
  width: 100%; max-width: 520px; border-radius: 28px;
  border: 1px solid rgba(0,212,255,0.1);
  box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 0 60px rgba(139,92,246,0.08);
  transition: all 0.5s ease;
}
.showcase-img:hover { transform: scale(1.02); box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 0 80px rgba(0,212,255,0.12); }
.showcase-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 90%; height: 90%; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.12), transparent 70%);
  filter: blur(50px); z-index: -1;
}

/* ====== WHY US ====== */
.why-section { position: relative; overflow: hidden; }
.why-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.03; pointer-events: none; z-index: 0; }
.why-bg img { width: 100%; height: 100%; object-fit: cover; }
.why-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto; position: relative; z-index: 2;
}
.why-card {
  border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(15,15,30,0.5), rgba(5,5,8,0.7));
  border-radius: 24px; padding: 36px; transition: all 0.4s ease;
  backdrop-filter: blur(8px); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-bright), var(--cyan-bright), transparent);
  opacity: 0; transition: opacity 0.3s;
  animation: scan-line 3s linear infinite reverse;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover {
  border-color: rgba(124,58,237,0.2); transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 50px rgba(124,58,237,0.06),
              inset 0 1px 0 rgba(255,255,255,0.06);
}
.why-number {
  font-size: 34px; font-weight: 900;
  background: linear-gradient(135deg, var(--cyan-bright), var(--blue), var(--purple-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(0,229,255,0.2));
}
.why-card h3 { font-size: 16px; margin-bottom: 12px; color: #fff; }
.why-card p { color: var(--muted); font-size: 14px; line-height: 1.8; }

/* ====== PROCESS — Premium Steps ====== */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step {
  padding: 32px; border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(15,15,30,0.5), rgba(5,5,8,0.7));
  border-radius: 24px; transition: all 0.4s ease;
  position: relative; overflow: hidden; backdrop-filter: blur(8px);
}
.step::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-bright), var(--purple-bright), transparent);
  transition: opacity 0.3s;
}
.step:hover::before {
  opacity: 1;
  animation: scan-line 2s linear infinite;
}
@keyframes scan-line {
  0% { left: -100%; }
  100% { left: 100%; }
}
.step:hover { border-color: var(--line); transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.step b {
  font-size: 32px; display: block; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--cyan-bright), var(--blue), var(--purple-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 6px rgba(0,229,255,0.15));
}
.step h3 { margin: 12px 0 10px; font-size: 15px; color: #fff; }
.step p { color: var(--muted); margin: 0; line-height: 1.7; font-size: 14px; }

/* ====== INDUSTRIES ====== */
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.industry {
  padding: 32px; border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(15,15,30,0.5), rgba(5,5,8,0.7));
  border-radius: 24px; transition: all 0.4s ease; backdrop-filter: blur(8px);
}
.industry:hover {
  border-color: rgba(139,92,246,0.15); transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 30px rgba(139,92,246,0.04);
}
.industry h3 { margin: 0 0 12px; font-size: 16px; color: #fff; }
.industry p { color: var(--muted); margin: 0; line-height: 1.7; font-size: 14px; }

/* ====== TEAM — Premium Cards ====== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.team-card {
  border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(15,15,30,0.5), rgba(5,5,8,0.7));
  border-radius: 28px; padding: 28px; text-align: center;
  transition: all 0.4s ease; backdrop-filter: blur(8px);
}
.team-card:hover {
  border-color: var(--line); transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 30px rgba(0,212,255,0.05);
}
.team-img-wrap {
  width: 100%; aspect-ratio: 1; border-radius: 22px; overflow: hidden; margin-bottom: 20px;
  border: 1px solid rgba(0,212,255,0.1); position: relative;
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-card h3 { font-size: 16px; margin-bottom: 6px; color: #fff; }
.team-card p { color: var(--muted); font-size: 13px; }

/* ====== TESTIMONIALS ====== */
.testimonial-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.quote {
  padding: 36px; border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(135deg, rgba(15,15,30,0.5), rgba(5,5,8,0.7));
  border-radius: 24px; position: relative; backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}
.quote:hover { border-color: var(--line); transform: translateY(-4px); }
.quote::before {
  content: '\201C'; position: absolute; top: 20px; left: 28px; font-size: 56px;
  background: linear-gradient(135deg, var(--cyan-bright), var(--purple-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; opacity: 0.5;
}
.quote p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 18px; padding-top: 24px; }
.quote span { color: var(--cyan-bright); font-size: 12px; font-weight: 700; letter-spacing: 0.05em; }

/* ====== CTA — Grand Finale ====== */
.cta {
  text-align: center; margin: 60px 6vw 80px;
  border: 1px solid rgba(255,255,255,0.06); border-radius: 36px;
  background: radial-gradient(ellipse at 50% -20%, rgba(0,212,255,0.1), rgba(139,92,246,0.05) 40%, var(--bg) 70%);
  position: relative; overflow: hidden; padding: 70px 5vw;
}
.cta::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
}
.cta::after {
  content: ''; position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.06), transparent 70%);
  pointer-events: none;
}
.cta-bg-img { position: absolute; inset: 0; opacity: 0.04; pointer-events: none; z-index: 0; }
.cta-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.cta .pill, .cta h2, .cta p, .cta-actions { position: relative; z-index: 2; }
.cta-actions { display: flex; gap: 18px; justify-content: center; margin-top: 36px; }

/* ====== FOOTER — Modern Spacious ====== */
.footer {
  padding: 50px 6vw 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted); font-size: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(8,8,26,0.8) 100%);
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.15), rgba(124,58,237,0.1), transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 24px;
}

.footer-brand-col {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img {
  width: 46px; height: 46px;
  filter: drop-shadow(0 0 10px rgba(0,212,255,0.4));
}
.footer-logo-animated {
  animation: footer-logo-blink 3s ease-in-out infinite;
}
@keyframes footer-logo-blink {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(0,212,255,0.4)) drop-shadow(0 0 20px rgba(124,58,237,0.2));
    opacity: 1;
    transform: scale(1);
  }
  30% {
    filter: drop-shadow(0 0 25px rgba(0,229,255,0.9)) drop-shadow(0 0 40px rgba(124,58,237,0.5));
    opacity: 1;
    transform: scale(1.05);
  }
  50% {
    filter: drop-shadow(0 0 5px rgba(0,212,255,0.2));
    opacity: 0.6;
    transform: scale(0.98);
  }
  70% {
    filter: drop-shadow(0 0 20px rgba(0,229,255,0.8)) drop-shadow(0 0 35px rgba(124,58,237,0.4));
    opacity: 1;
    transform: scale(1.03);
  }
}
.footer-brand strong {
  color: #fff; font-size: 16px; font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.05em;
}
.footer-brand p { color: var(--muted); font-size: 12px; margin-top: 2px; }
.footer-contact-info {
  display: flex; flex-direction: row; gap: 24px; flex-wrap: wrap; align-items: center;
}
.footer-contact-info a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 13px; transition: color 0.3s ease;
}
.footer-contact-info a:hover { color: var(--cyan-bright); }
.footer-contact-info a::after { display: none; }
.footer-contact-info svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--cyan-bright); }
.footer-location {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6); font-size: 13px;
}
.footer-location svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--cyan-bright); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-socials a:hover {
  border-color: rgba(0,229,255,0.3);
  background: rgba(0,229,255,0.08);
  color: var(--cyan-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,229,255,0.15);
}
.footer-socials svg { width: 16px; height: 16px; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  color: #fff; font-size: 12px; font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px;
  background: linear-gradient(90deg, var(--cyan-bright), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-col a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 13px; transition: all 0.3s ease;
  padding: 2px 0; position: relative;
}
.footer-col a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--cyan-bright); transition: width 0.3s ease;
}
.footer-col a:hover { color: #fff; }
.footer-col a:hover::after { width: 100%; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { color: var(--muted); font-size: 12px; text-align: center; }
.footer-bottom-spacer { width: 44px; }

.back-to-top {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(0,229,255,0.2);
  background: rgba(0,229,255,0.05);
  color: var(--cyan-bright);
  text-decoration: none;
  transition: all 0.3s ease;
}
.back-to-top:hover {
  background: rgba(0,229,255,0.12);
  border-color: rgba(0,229,255,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,229,255,0.2);
}
.back-to-top svg { width: 18px; height: 18px; }

/* ====== ANIMATIONS ====== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}
.reveal.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }

/* Animated gradient border on service cards */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate-gradient { to { --angle: 360deg; } }

.service-card:hover {
  border-image: linear-gradient(var(--angle), var(--cyan-bright), var(--blue), var(--purple-bright), var(--cyan-bright)) 1;
  animation: rotate-gradient 3s linear infinite;
}

/* Glowing pulse animation for icons */
@keyframes icon-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,229,255,0.1), inset 0 1px 0 rgba(255,255,255,0.06); }
  50% { box-shadow: 0 4px 30px rgba(0,229,255,0.25), inset 0 1px 0 rgba(255,255,255,0.1); }
}
.service-card:hover .service-icon { animation: icon-glow 2s ease-in-out infinite; }

/* Floating animation variations */
@keyframes float-slow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float-medium { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-12px) rotate(1deg)} }
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Animated gradient text for headings — static pattern, no rolling */
.section-head h2 {
  background-size: 100% 100%;
}

/* Pulse ring animation for stats */
@keyframes stat-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,229,255,0.1); }
  70% { box-shadow: 0 0 0 10px rgba(0,229,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,229,255,0); }
}
.mini-stats div:hover, .metrics div:hover { animation: stat-pulse 1.5s ease-out; }

/* Strip animations handled in main strip section above */

/* CTA section animated border glow */
@keyframes cta-border-glow {
  0%, 100% { border-color: rgba(0,229,255,0.08); }
  50% { border-color: rgba(124,58,237,0.15); }
}
.cta { animation: cta-border-glow 4s ease-in-out infinite; }

/* Team image subtle zoom pulse */
@keyframes team-zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.team-card:hover .team-img-wrap img { animation: team-zoom 3s ease-in-out infinite; }

/* ====== FUTURE INNOVATION — Grid Cards ====== */
.future-innovation {
  overflow: hidden;
  padding-top: 40px;
  background: radial-gradient(ellipse at 30% 20%, rgba(0,229,255,0.03), transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(124,58,237,0.03), transparent 50%);
}
.innovation-intro {
  color: var(--muted); font-size: 16px; line-height: 1.9; max-width: 700px; margin: 0 auto;
}
.innovation-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1300px; margin: 0 auto;
}
.innovation-card {
  border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(12,12,36,0.5), rgba(4,4,8,0.7));
  border-radius: 22px; padding: 28px 24px; transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden; backdrop-filter: blur(8px);
  text-align: center;
}
.innovation-card::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-bright), var(--purple-bright), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.innovation-card:hover::before {
  opacity: 1;
  animation: scan-line 2.5s linear infinite;
}
.innovation-card:hover {
  border-color: rgba(0,229,255,0.2); transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,229,255,0.06),
              inset 0 1px 0 rgba(255,255,255,0.06);
}
.innovation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(139,92,246,0.1));
  border: 1px solid rgba(0,229,255,0.2);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.innovation-icon svg {
  width: 30px;
  height: 30px;
  color: #00e5ff;
  transition: color 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(0,229,255,0.3));
}
.innovation-card:hover .innovation-icon {
  transform: scale(1.1) translateY(-4px);
  background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(139,92,246,0.2));
  box-shadow: 0 4px 20px rgba(0,229,255,0.2);
}
.innovation-card:hover .innovation-icon svg {
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(0,229,255,0.6));
}
.innovation-card h3 {
  font-size: 14px; margin-bottom: 10px; color: #fff;
  font-family: 'Orbitron', sans-serif; letter-spacing: 0.02em;
}
.innovation-card p {
  color: var(--muted); font-size: 13px; line-height: 1.7;
}

/* ====== AI GALLERY ====== */
.ai-gallery {
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.04), transparent 60%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.8) saturate(1.1);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.3);
}
.gallery-item:hover {
  border-color: rgba(0,229,255,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 50px rgba(0,229,255,0.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  text-shadow: 0 0 10px rgba(0,229,255,0.5);
}

/* Secondary showcase image */
.showcase-img-secondary {
  margin-top: 24px;
  opacity: 0.85;
  transition: all 0.5s ease;
}
.showcase-img-secondary:hover {
  opacity: 1;
}

/* ====== SCROLLBAR — Glossy ====== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan-bright), var(--blue), var(--purple));
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0,229,255,0.3);
}

/* ====== SELECTION ====== */
::selection { background: rgba(0,229,255,0.2); color: #fff; }

/* ====== RESPONSIVE ====== */

/* Tablet landscape / iPad Pro */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid, .industry-grid { grid-template-columns: repeat(2,1fr); }
  .innovation-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 240px); }
  .hero-grid { gap: 30px; }
  .hero-img { width: min(450px, 100%); }
  .about-grid { gap: 50px; }
  .ai-showcase-grid { gap: 50px; }
}

/* Tablet portrait / iPad */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu { display: block; }
  .nav-links.open {
    display: flex; position: absolute; left: 5vw; right: 5vw; top: 74px;
    flex-direction: column; background: rgba(5,5,8,0.98);
    border: 1px solid var(--line); border-radius: 20px; padding: 28px;
    backdrop-filter: blur(24px); gap: 18px;
  }
  .nav-links.open a {
    padding: 14px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.open .nav-pill-bg { display: none; }
  .hero-grid, .about-grid, .ai-showcase-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-copy { text-align: center; }
  .hero-art { order: -1; }
  .hero-img { width: min(320px, 80%); margin: 0 auto; }
  .actions { flex-wrap: wrap; }
  .actions, .mini-stats { justify-content: center; }
  .lead { margin: 0 auto; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .metrics, .process-grid, .industry-grid { grid-template-columns: 1fr; }
  .innovation-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 220px); }
  .team-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 50px 5vw; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta { margin: 60px 4vw 80px; padding: 50px 6vw; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer-main { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .footer-brand-col { align-items: center; }
  .footer-brand { justify-content: center; }
  .footer-contact-info { align-items: center; justify-content: center; flex-direction: column; }
  .footer-socials { justify-content: center; }
  .footer-col { align-items: center; }
  .footer-col a::after { left: 50%; transform: translateX(-50%); }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .footer-bottom-spacer { display: none; }
  .footer-links a { margin: 0 14px; }
  .about-img-float { display: none; }
  .about-ellipse { display: none; }
  .showcase-img-secondary { display: none; }
  .showcase-img { max-width: 100%; margin: 0 auto; display: block; }
  .ai-showcase-visual { text-align: center; }
  .strip { margin: -20px 4vw 40px; }
}

/* Large phones / small tablets (600px-768px) */
@media (max-width: 768px) {
  .section-pad { padding: 40px 5vw; }
  .hero h1 { font-size: clamp(20px, 5.5vw, 32px); }
  .lead { font-size: 15px; }
  .mini-stats { gap: 12px; }
  .mini-stats div { min-width: 110px; padding: 16px 18px; border-radius: 14px; }
  .mini-stats strong { font-size: 22px; }
  .metrics { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .metrics div { padding: 16px 12px; border-radius: 14px; }
  .metrics b { font-size: 20px; }
  .process-grid, .industry-grid { grid-template-columns: 1fr; }
  .innovation-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .innovation-card { padding: 22px 18px; }
  .innovation-card h3 { font-size: 13px; }
  .innovation-card p { font-size: 12px; }
  .service-card { padding: 28px 22px; border-radius: 22px; }
  .why-card { padding: 28px; border-radius: 20px; }
  .strip { margin: -10px 3vw 30px; padding: 20px 0; border-radius: 18px; }
  .marquee-track { gap: 24px; }
  .strip span { font-size: 13px; padding: 0 12px; }
  .cta { border-radius: 24px; padding: 40px 5vw; margin: 40px 3vw 60px; }
  .gallery-grid { grid-template-rows: repeat(6, 200px); }
  .team-card { border-radius: 22px; padding: 22px; }
}

/* Small phones */
@media (max-width: 480px) {
  .nav { padding: 16px 4vw; }
  .brand img { width: 42px; height: 42px; }
  .brand span { font-size: 16px; }
  .section-pad { padding: 32px 4vw; }
  .hero { padding-top: 80px; padding-bottom: 40px; }
  .hero h1 { font-size: clamp(18px, 6vw, 26px); margin: 20px 0; }
  .hero-img { width: min(240px, 70%); }
  .lead { font-size: 14px; line-height: 1.8; }
  .eyebrow, .pill { font-size: 9px; padding: 8px 14px; letter-spacing: 0.12em; }
  .actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn { padding: 14px 28px; font-size: 12px; width: 100%; text-align: center; }
  .mini-stats { flex-direction: column; align-items: center; gap: 10px; }
  .mini-stats div { width: 100%; text-align: center; }
  .innovation-grid { grid-template-columns: 1fr; }
  .innovation-card { padding: 24px 20px; }
  .metrics { grid-template-columns: 1fr; }
  .service-card { padding: 24px 18px; border-radius: 18px; }
  .service-icon { width: 48px; height: 48px; border-radius: 14px; }
  .service-card h3 { font-size: 15px; }
  .service-card p { font-size: 13px; }
  .why-card { padding: 24px; border-radius: 18px; }
  .why-number { font-size: 28px; }
  .step { padding: 24px; border-radius: 18px; }
  .step b { font-size: 26px; }
  .industry { padding: 24px; border-radius: 18px; }
  .cta { border-radius: 20px; padding: 36px 5vw; margin: 30px 3vw 50px; }
  .cta h2 { font-size: clamp(18px, 5vw, 24px); }
  .strip { margin: -10px 2vw 24px; padding: 16px 0; border-radius: 14px; }
  .strip span { font-size: 12px; padding: 0 10px; }
  .marquee-track { gap: 18px; }
  .footer { padding: 36px 4vw 20px; }
  .footer-main { gap: 24px; }
  .footer-brand img { width: 38px; height: 38px; }
  .gallery-grid { grid-template-rows: repeat(6, 180px); }
  .about-img-main { border-radius: 20px; }
  .showcase-img { border-radius: 20px; }
  .team-card { border-radius: 18px; }
  .quote { padding: 28px 20px; border-radius: 18px; }
  .quote p { font-size: 14px; }
  .ai-features-list li { font-size: 14px; padding: 12px 0 12px 24px; }
  .ai-features-list li::before { width: 8px; height: 8px; }
  .content h2, .section-head h2, .cta h2 { margin: 14px 0; }
}

/* Very small phones (iPhone SE, etc.) */
@media (max-width: 360px) {
  .nav { padding: 14px 3vw; }
  .brand span { font-size: 14px; letter-spacing: 0.08em; }
  .brand img { width: 36px; height: 36px; }
  .hero h1 { font-size: 18px; }
  .lead { font-size: 13px; }
  .section-pad { padding: 28px 3.5vw; }
  .mini-stats strong { font-size: 20px; }
  .metrics b { font-size: 18px; }
  .innovation-card h3 { font-size: 12px; }
  .innovation-card p { font-size: 11px; }
  .footer-brand strong { font-size: 14px; }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Larger tap targets for touch */
  .nav-links.open a { padding: 16px 20px; min-height: 48px; display: flex; align-items: center; }
  .btn { min-height: 48px; }
  .footer-socials a { width: 44px; height: 44px; }
  .back-to-top { width: 48px; height: 48px; }
  .footer-col a { padding: 8px 0; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  /* Disable hover-dependent animations on touch devices */
  .service-card:hover { transform: none; }
  .innovation-card:hover { transform: none; }
  .why-card:hover { transform: none; }
  .step:hover { transform: none; }
  .industry:hover { transform: none; }
  .team-card:hover { transform: none; }
  /* Keep subtle border glow on tap */
  .service-card:active { border-color: rgba(0,229,255,0.2); }
  .innovation-card:active { border-color: rgba(0,229,255,0.2); }
  .why-card:active { border-color: rgba(124,58,237,0.2); }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 40px 5vw; }
  .hero-art { display: none; }
  .section-pad { padding: 30px 5vw; }
}
