/* ============================================
   StreamSailor — Global Styles
   ============================================ */

:root {
  --cyan: #00d4ff;
  --cyan-dim: #0099bb;
  --cyan-glow: rgba(0, 212, 255, 0.3);
  --orange: #ff7a00;
  --orange-glow: rgba(255, 122, 0, 0.3);
  --bg-deep: #04080f;
  --bg-dark: #080e1a;
  --bg-card: rgba(8, 20, 40, 0.85);
  --bg-card-hover: rgba(0, 212, 255, 0.07);
  --border: rgba(0, 212, 255, 0.15);
  --border-hover: rgba(0, 212, 255, 0.5);
  --text: #e8f4ff;
  --text-dim: #8aa8c8;
  --font-brand: 'Orbitron', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Utility ---- */
.cyan { color: var(--cyan); }
.orange { color: var(--orange); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

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

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(4, 8, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--cyan-glow));
}

.nav-brand {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; }

/* ---- Buttons ---- */
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #0072ff);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.5);
  filter: brightness(1.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 36px; font-size: 1rem; }

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 20px;
  background: rgba(4, 8, 15, 0.97);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  color: var(--text-dim);
  text-decoration: none;
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--cyan); }
.mobile-menu .btn-primary { text-align: center; justify-content: center; margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.hero-glow--left {
  background: var(--cyan);
  top: -200px; left: -200px;
}
.hero-glow--right {
  background: #0040ff;
  bottom: -200px; right: -100px;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease forwards;
}

.hero-logo {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.3));
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-badges span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
}

/* ---- Phone Mockup ---- */
.hero-mockup {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.mockup-phone {
  width: 280px;
  height: 560px;
  background: linear-gradient(180deg, #0d1f3c 0%, #060d1a 100%);
  border-radius: 36px;
  border: 2px solid var(--border);
  box-shadow:
    0 0 0 6px rgba(0,0,0,0.8),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(0, 212, 255, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mockup-screen {
  flex: 1;
  padding: 20px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.mockup-home-bar {
  height: 4px;
  width: 120px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  margin: 12px auto;
}

.stream-card {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition);
}
.stream-card:hover { border-color: var(--border-hover); }

.stream-card.small { display: flex; gap: 10px; align-items: center; padding: 10px; }

.stream-live {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(255, 30, 50, 0.9);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  z-index: 2;
}
.stream-live.rec { background: rgba(255, 122, 0, 0.9); }
.stream-card.small .stream-live { position: static; }

.stream-thumb {
  width: 100%; height: 120px;
  background: linear-gradient(135deg, #0d2b4a, #0a1f38, #1a0a3a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.stream-thumb.sm {
  width: 60px; height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #0d2b4a, #1a0a3a);
}
.stream-thumb.orange-thumb { background: linear-gradient(135deg, #3a1a00, #1a0a3a); }

.stream-play {
  font-size: 2rem;
  color: rgba(0,212,255,0.7);
  text-shadow: 0 0 20px var(--cyan);
}

.stream-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
}
.stream-card.small .stream-info { padding: 0; }

.stream-game {
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
}
.stream-viewers {
  font-size: 0.65rem;
  color: var(--text-dim);
}

/* ---- Scroll Hint ---- */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease 1s both;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

/* ---- Wave Divider ---- */
.wave-divider {
  position: relative;
  margin-top: -1px;
  z-index: 2;
}
.wave-divider svg { display: block; width: 100%; }

/* ============================================
   SECTIONS — Common
   ============================================ */
section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 60px;
}

/* ============================================
   FEATURES
   ============================================ */
#features { background: var(--bg-dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #0072ff);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.1);
}

.feature-card:hover::before { opacity: 1; }

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
#how-it-works {
  background: var(--bg-deep);
}

.steps-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
}

.steps-line {
  position: absolute;
  left: 48px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  opacity: 0.3;
}

.step {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-brand);
  font-size: 3.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 212, 255, 0.3);
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: -webkit-text-stroke var(--transition);
}

.step:hover .step-number {
  -webkit-text-stroke: 2px var(--cyan);
  text-shadow: 0 0 30px var(--cyan-glow);
}

.step-body h3 {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.step-body p { color: var(--text-dim); max-width: 500px; }

.step-icon-box {
  width: 80px; height: 80px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all var(--transition);
}

.step:hover .step-icon-box {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--border-hover);
  box-shadow: 0 0 30px var(--cyan-glow);
  transform: scale(1.1);
}

/* ============================================
   STATS
   ============================================ */
#stats {
  background: var(--bg-dark);
  overflow: hidden;
}

.stats-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.1), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(0,212,255,0.08), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}
.stat-card:hover::after { opacity: 1; }

.stat-number {
  font-family: var(--font-brand);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--cyan);
  display: inline;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  display: inline;
}

.stat-label {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials { background: var(--bg-deep); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card.featured {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.05);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.1);
}

.stars {
  color: #ffd200;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: white;
  font-size: 0.9rem;
}

.testimonial-author span {
  color: var(--text-dim);
  font-size: 0.78rem;
}

/* ============================================
   DOWNLOAD
   ============================================ */
#download {
  background: var(--bg-dark);
  overflow: hidden;
}

.download-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  right: -200px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.download-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.download-text p {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  text-decoration: none;
  color: white;
  transition: all var(--transition);
  min-width: 180px;
}

.store-btn:hover {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.store-btn small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 400;
}

.store-btn strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
}

.download-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.download-meta span { font-weight: 600; }

/* ---- Logo Visual ---- */
.download-visual {
  position: relative;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-logo {
  width: 200px; height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.4));
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.download-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.ring-1 { width: 220px; height: 220px; animation: spinRing 12s linear infinite; }
.ring-2 { width: 270px; height: 270px; border-style: dashed; animation: spinRing 18s linear infinite reverse; }
.ring-3 { width: 310px; height: 310px; animation: spinRing 25s linear infinite; border-color: rgba(255, 122, 0, 0.1); }

/* ============================================
   FAQ
   ============================================ */
#faq { background: var(--bg-deep); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:has(.faq-answer.open) {
  border-color: rgba(0, 212, 255, 0.35);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--cyan); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--cyan);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.footer-wave {
  margin-bottom: -1px;
}
.footer-wave svg { display: block; width: 100%; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  width: 64px; height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.4));
}

.footer-brand .nav-brand {
  font-size: 1.5rem;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--transition);
  color: var(--text-dim);
}

.social-links a:hover {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-brand);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.footer-heart { opacity: 0.7; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

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

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  #hero {
    flex-direction: column;
    padding: 120px 40px 60px;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-mockup { display: none; }
  .download-inner { grid-template-columns: 1fr; text-align: center; }
  .download-visual { margin: 0 auto; }
  .download-buttons { justify-content: center; }
  .download-meta { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  #hero { padding: 100px 24px 60px; }

  .step { grid-template-columns: 60px 1fr; }
  .step-visual { display: none; }
  .steps-line { left: 30px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
}
