/* ============================================
   HELIUM STUDIO — STYLES
   Midnight Galaxy Theme | 2026
============================================ */

/* --- Variables --- */
:root {
  --bg-primary: #0D1B2A;
  --bg-secondary: #1B2D45;
  --bg-card: #162236;
  --accent-purple: #6B5CE7;
  --accent-teal: #00D4AA;
  --accent-glow: rgba(107, 92, 231, 0.4);
  --accent-teal-glow: rgba(0, 212, 170, 0.3);
  --text-primary: #F0F4FF;
  --text-secondary: #8A9BB5;
  --text-muted: #4A5A72;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(107, 92, 231, 0.5);
  --font-main: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 40px rgba(107, 92, 231, 0.2);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 3px; }

/* --- Custom Cursor --- */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent-teal);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
  mix-blend-mode: screen;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(107, 92, 231, 0.6);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.hover { transform: translate(-50%, -50%) scale(2.5); background: var(--accent-purple); }
.cursor-follower.hover { width: 60px; height: 60px; border-color: var(--accent-teal); }

/* --- Particle Canvas --- */
#particleCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.5;
}

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

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 700; letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; color: var(--accent-teal); }
.logo-accent { color: var(--accent-teal); }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.nav-link.active::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent-teal);
}
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  color: white; font-size: 0.9rem; font-weight: 600;
  transition: var(--transition); flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(107, 92, 231, 0.4);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(107, 92, 231, 0.5); }
.btn-icon { width: 16px; height: 16px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(107,92,231,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,92,231,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,92,231,0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,170,0.15) 0%, transparent 70%);
  bottom: -50px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(107,92,231,0.1) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation: orbFloat 12s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  width: 100%; position: relative; z-index: 1;
}

/* Left side spans full grid */
.hero-badge, .hero-title, .hero-subtitle, .hero-actions, .hero-stats {
  grid-column: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  font-size: 0.82rem; font-weight: 500; color: var(--accent-teal);
  width: fit-content; margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 8px var(--accent-teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.title-gradient {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-outline {
  -webkit-text-stroke: 2px var(--accent-purple);
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--text-secondary); max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  color: white; font-size: 0.95rem; font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(107, 92, 231, 0.4);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(107, 92, 231, 0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text-primary); font-size: 0.95rem; font-weight: 500;
  transition: var(--transition);
  background: rgba(255,255,255,0.03);
}
.btn-ghost:hover {
  border-color: var(--accent-purple);
  background: rgba(107, 92, 231, 0.1);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.stat-item { text-align: center; }
.stat-number {
  display: block; font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-suffix { font-size: 1.5rem; font-weight: 800; color: var(--accent-teal); }
.stat-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual */
.hero-visual {
  grid-column: 2; grid-row: 1 / 6;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-card-stack { position: relative; width: 340px; height: 340px; }

.floating-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(22, 34, 54, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.card-1 { top: 0; left: -20px; animation: floatCard1 4s ease-in-out infinite; }
.card-2 { top: 50%; right: -30px; transform: translateY(-50%); animation: floatCard2 5s ease-in-out infinite 1s; }
.card-3 { bottom: 0; left: 10px; animation: floatCard3 4.5s ease-in-out infinite 0.5s; }

@keyframes floatCard1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatCard2 { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(-50%) translateX(8px)} }
@keyframes floatCard3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

.card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.card-icon svg { width: 18px; height: 18px; }
.card-title { display: block; font-size: 0.75rem; color: var(--text-muted); }
.card-val { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }

.hero-globe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.globe-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(107, 92, 231, 0.3);
}
.ring-1 { width: 180px; height: 180px; animation: spin 20s linear infinite; border-color: rgba(107,92,231,0.4); }
.ring-2 { width: 130px; height: 130px; animation: spin 15s linear infinite reverse; border-color: rgba(0,212,170,0.3); }
.ring-3 { width: 80px; height: 80px; animation: spin 10s linear infinite; border-color: rgba(107,92,231,0.5); }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.globe-core {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 0 30px rgba(107,92,231,0.5);
  z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem;
  animation: fadeInUp 1s ease 1s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent-purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   MARQUEE
============================================ */
.marquee-strip {
  overflow: hidden; padding: 18px 0;
  background: rgba(107, 92, 231, 0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 40px; align-items: center;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-size: 0.9rem; font-weight: 600;
  color: var(--text-secondary); white-space: nowrap;
  letter-spacing: 0.5px;
}
.marquee-track .dot { color: var(--accent-teal); font-size: 0.7rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================
   SECTIONS COMMON
============================================ */
section { padding: 100px 0; position: relative; z-index: 1; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(107, 92, 231, 0.12);
  border: 1px solid rgba(107, 92, 231, 0.3);
  font-size: 0.8rem; font-weight: 600; color: var(--accent-purple);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.1; margin-bottom: 16px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ============================================
   SERVICES
============================================ */
.services { background: var(--bg-primary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: var(--transition);
  cursor: none;
}
.service-card::before {
  content: ''; position: absolute;
  inset: 0; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(107,92,231,0.08), rgba(0,212,170,0.05));
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-hover); box-shadow: var(--shadow-glow); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(135deg, rgba(107,92,231,0.15), rgba(0,212,170,0.08));
  border-color: rgba(107,92,231,0.4);
  box-shadow: 0 0 30px rgba(107,92,231,0.15);
}
.service-number {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--text-muted); margin-bottom: 20px;
}
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(107,92,231,0.2), rgba(0,212,170,0.1));
  border: 1px solid rgba(107,92,231,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent-teal);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  color: white; border-color: transparent;
  box-shadow: 0 4px 20px rgba(107,92,231,0.4);
}
.service-icon-wrap svg { width: 24px; height: 24px; }
.service-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.service-tags span {
  padding: 4px 10px; border-radius: 6px;
  background: rgba(255,255,255,0.05);
  font-size: 0.75rem; color: var(--text-muted);
  border: 1px solid var(--border);
}
.service-arrow {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.service-card:hover .service-arrow {
  background: var(--accent-purple); border-color: var(--accent-purple);
  color: white; transform: rotate(45deg);
}
.service-arrow svg { width: 16px; height: 16px; }

/* ============================================
   WORK / PORTFOLIO
============================================ */
.work { background: var(--bg-secondary); }
.work-filter {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: transparent; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent-purple); color: white;
  border-color: var(--accent-purple);
  box-shadow: 0 4px 16px rgba(107,92,231,0.3);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.work-card { border-radius: var(--radius); overflow: hidden; cursor: none; }
.work-card.large { grid-column: span 2; }
.work-img {
  position: relative; height: 280px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: var(--transition);
}
.work-card.large .work-img { height: 320px; }
.work-overlay {
  position: absolute; inset: 0;
  background: rgba(13, 27, 42, 0.85);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px;
  opacity: 0; transition: var(--transition);
  backdrop-filter: blur(4px);
}
.work-card:hover .work-overlay { opacity: 1; }
.work-tag {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  background: rgba(107,92,231,0.3); border: 1px solid rgba(107,92,231,0.5);
  font-size: 0.75rem; color: var(--accent-teal);
  margin-bottom: 10px; width: fit-content;
}
.work-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.work-overlay p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 16px; }
.work-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-purple); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.work-btn:hover { background: var(--accent-teal); transform: scale(1.1); }
.work-btn svg { width: 18px; height: 18px; }

/* Work card mockups */
.work-mockup { padding: 20px; }
.mockup-browser {
  background: rgba(13,27,42,0.8); border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1); overflow: hidden;
  width: 220px;
}
.browser-bar {
  padding: 8px 12px; background: rgba(255,255,255,0.05);
  display: flex; gap: 6px; align-items: center;
}
.browser-bar span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.browser-content { padding: 12px; }
.mock-nav { height: 8px; background: rgba(107,92,231,0.4); border-radius: 4px; margin-bottom: 10px; }
.mock-hero { height: 40px; background: linear-gradient(135deg, rgba(107,92,231,0.3), rgba(0,212,170,0.2)); border-radius: 6px; margin-bottom: 10px; }
.mock-cards { display: flex; gap: 6px; }
.mock-card { flex: 1; height: 30px; background: rgba(255,255,255,0.06); border-radius: 4px; }

.brand-visual {
  position: relative; width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.brand-circle {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
}
.c1 { width: 120px; height: 120px; animation: spin 8s linear infinite; }
.c2 { width: 80px; height: 80px; animation: spin 5s linear infinite reverse; }
.brand-letter {
  font-size: 3rem; font-weight: 900; color: white;
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.phone-mockup {
  width: 80px; height: 140px; border-radius: 16px;
  background: rgba(13,27,42,0.8);
  border: 2px solid rgba(255,255,255,0.2);
  overflow: hidden; padding: 8px;
}
.phone-status { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 8px; }
.phone-content { display: flex; flex-direction: column; gap: 6px; }
.phone-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(79,195,247,0.5), rgba(10,46,77,0.8));
  margin: 0 auto;
}
.phone-bars { display: flex; gap: 4px; align-items: flex-end; height: 40px; padding: 0 4px; }
.phone-bar { flex: 1; background: rgba(79,195,247,0.6); border-radius: 2px; }

.store-visual { display: flex; gap: 12px; padding: 20px; }
.store-card {
  flex: 1; height: 120px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}
.sv1 { background: rgba(127,200,160,0.3); }
.sv2 { background: rgba(26,60,40,0.5); }

.campaign-visual {
  position: relative; width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.cv-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(255,107,53,0.4);
}
.r1 { width: 140px; height: 140px; animation: spin 6s linear infinite; }
.r2 { width: 100px; height: 100px; animation: spin 4s linear infinite reverse; }
.r3 { width: 60px; height: 60px; animation: spin 3s linear infinite; }
.cv-text {
  font-size: 1.2rem; font-weight: 900; color: white;
  letter-spacing: 3px; z-index: 1;
}

/* Work card hidden */
.work-card.hidden { display: none; }

/* ============================================
   PROCESS
============================================ */
.process { background: var(--bg-primary); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-step {
  position: relative; text-align: center; padding: 0 20px;
}
.step-number {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--accent-purple); margin-bottom: 20px;
  letter-spacing: 2px;
}
.step-content {
  padding: 32px 24px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: var(--transition);
}
.process-step:hover .step-content {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.step-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(107,92,231,0.2), rgba(0,212,170,0.1));
  border: 1px solid rgba(107,92,231,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--accent-teal);
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  color: white; border-color: transparent;
}
.step-icon svg { width: 24px; height: 24px; }
.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.step-content p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.step-connector {
  position: absolute; top: 80px; right: -10px;
  width: 20px; height: 2px;
  background: linear-gradient(to right, var(--accent-purple), var(--accent-teal));
  z-index: 2;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials { background: var(--bg-secondary); overflow: hidden; }
.testimonials-slider { overflow: hidden; }
.testimonial-track {
  display: flex; gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: calc(50% - 12px);
  padding: 36px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  flex-shrink: 0;
}
.testimonial-stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 1rem; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 28px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: white;
  flex-shrink: 0;
}
.author-name { display: block; font-weight: 700; font-size: 0.95rem; }
.author-role { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 36px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--accent-purple); border-color: var(--accent-purple); color: white; }
.slider-btn svg { width: 20px; height: 20px; }
.slider-dots { display: flex; gap: 8px; }
.dot-btn {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--text-muted); transition: var(--transition);
  border: none;
}
.dot-btn.active { background: var(--accent-purple); width: 24px; border-radius: 4px; }

/* ============================================
   TECH STACK
============================================ */
.tech-stack { background: var(--bg-primary); }
.tech-grid {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.tech-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 16px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: var(--transition); cursor: none;
}
.tech-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.tech-icon { font-size: 1.8rem; }
.tech-item span:last-child { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }

/* ============================================
   CONTACT
============================================ */
.contact { background: var(--bg-secondary); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-desc {
  font-size: 1rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 36px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(107,92,231,0.1); border: 1px solid rgba(107,92,231,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-teal); flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.ci-label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 2px; }
.ci-value { display: block; font-size: 0.9rem; font-weight: 600; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--transition);
}
.social-link:hover {
  background: var(--accent-purple); border-color: var(--accent-purple);
  color: white; transform: translateY(-3px);
}
.social-link svg { width: 18px; height: 18px; }

/* Contact Form */
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-primary); font-size: 0.9rem;
  transition: var(--transition); outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-purple);
  background: rgba(107,92,231,0.05);
  box-shadow: 0 0 0 3px rgba(107,92,231,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-secondary); }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.7; margin-top: 16px; max-width: 280px;
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col a {
  display: block; font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 10px; transition: var(--transition);
}
.footer-col a:hover { color: var(--accent-teal); transform: translateX(4px); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--text-primary); }

/* ============================================
   TOAST
============================================ */
.toast {
  position: fixed; bottom: 32px; right: 32px;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(0,212,170,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  color: var(--text-primary); font-size: 0.9rem; font-weight: 500;
  z-index: 9999;
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 20px; height: 20px; color: var(--accent-teal); }

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .step-connector { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-badge, .hero-title, .hero-subtitle, .hero-actions, .hero-stats { grid-column: 1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(13,27,42,0.97);
    backdrop-filter: blur(20px);
    padding: 24px; gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card.large { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .testimonial-card { min-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-form { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
}