:root {
  --purple-900: #581c87;
  --purple-600: #9333ea;
  --purple-500: #a855f7;
  --purple-400: #c084fc;
  --cyan-600: #0891b2;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --pink-500: #ec4899;
  --pink-400: #f472b6;
  --slate-900: #0f172a;
  --grad-purple-cyan: linear-gradient(135deg, var(--purple-600) 0%, var(--cyan-500) 100%);
  --grad-purple-pink: linear-gradient(135deg, var(--purple-500) 0%, var(--pink-500) 100%);
  --grad-text: linear-gradient(135deg, var(--purple-400) 0%, var(--pink-400) 50%, var(--cyan-400) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(to bottom right, var(--slate-900) 0%, var(--purple-900) 50%, var(--slate-900) 100%);
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animated Background */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--purple-500);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--cyan-500);
  bottom: -100px;
  right: -100px;
  animation-delay: 7s;
}
.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--pink-500);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-purple-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: white;
  font-size: 22px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: white;
}
.btn-nav {
  background: var(--grad-purple-cyan);
  color: white !important;
  padding: 10px 24px;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(147, 51, 234, 0.7);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  z-index: 999;
}
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu a:hover {
  background: rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-grad {
  background: var(--grad-purple-cyan);
  color: white;
  box-shadow: 0 0 30px rgba(147, 51, 234, 0.4);
}
.btn-grad:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(147, 51, 234, 0.6);
}
.btn-outline {
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.05);
}
.btn-white {
  background: white;
  color: var(--purple-600);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}
.btn-white:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}
.w-full { width: 100%; justify-content: center; }

/* Hero */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(147, 51, 234, 0.2);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-400);
  margin-bottom: 24px;
}
.h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.grad-purple {
  background: linear-gradient(135deg, var(--purple-400) 0%, var(--purple-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-cyan {
  background: linear-gradient(135deg, var(--cyan-400) 0%, var(--cyan-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-white { color: white; }
.text-white-70 { color: rgba(255,255,255,0.7); }
.hero-p {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}
.avatars {
  display: flex;
  align-items: center;
}
.av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--slate-900);
  margin-left: -12px;
}
.av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, var(--purple-500), var(--purple-600)); }
.av2 { background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600)); }
.av3 { background: linear-gradient(135deg, var(--pink-400), var(--pink-500)); }
.av4 { background: linear-gradient(135deg, var(--purple-400), var(--cyan-400)); }
.av-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 2px solid var(--slate-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-left: -12px;
}
.social-proof p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* Mockup */
.hero-visual {
  perspective: 1500px;
}
.mockup {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 100px rgba(147, 51, 234, 0.2);
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s;
}
.mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}
.mockup-h {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.dots {
  display: flex;
  gap: 6px;
}
.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.title {
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.mockup-b {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}
.st-icon {
  width: 48px;
  height: 48px;
  background: var(--grad-purple-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.st-info {
  flex: 1;
}
.st-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.st-value {
  font-size: 28px;
  font-weight: 800;
}
.st-trend {
  font-size: 14px;
  font-weight: 700;
  color: #10b981;
}
.metrics {
  display: grid;
  gap: 12px;
}
.metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
}
.metric:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(147, 51, 234, 0.3);
}
.m-icon {
  font-size: 20px;
}
.m-label {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.m-value {
  font-weight: 700;
  font-size: 16px;
}

/* Sections */
.section {
  padding: 120px 0;
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}
.h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
}
.section-p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

/* Card */
.card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}
.card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(147, 51, 234, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.grad-purple-pink { background: var(--grad-purple-pink); }
.grad-cyan-blue { background: linear-gradient(135deg, var(--cyan-500) 0%, #3b82f6 100%); }
.grad-pink-purple { background: linear-gradient(135deg, var(--pink-500) 0%, var(--purple-500) 100%); }
.grad-cyan-purple { background: linear-gradient(135deg, var(--cyan-400) 0%, var(--purple-500) 100%); }
.grad-purple-cyan { background: var(--grad-purple-cyan); }
.grad-pink-cyan { background: linear-gradient(135deg, var(--pink-400) 0%, var(--cyan-400) 100%); }
.card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}
.card p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Platform */
.platform-feature {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s;
}
.platform-feature:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(8, 145, 178, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.2);
}
.platform-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--purple-500) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
}
.platform-feature h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}
.platform-feature > p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.feature-list li:last-child {
  border-bottom: none;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-400);
  font-weight: 700;
  font-size: 16px;
}

/* Demo Section */
.demo-section {
  background: linear-gradient(180deg, transparent 0%, rgba(88, 28, 135, 0.1) 100%);
}
.demo-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.demo-video {
  position: relative;
}
.video-placeholder {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-button {
  position: absolute;
  z-index: 100;
  cursor: pointer;
  transition: transform 0.3s;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  pointer-events: auto;
}
.play-button:hover {
  transform: scale(1.1);
}
.demo-preview {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.demo-screen {
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.2) 0%, rgba(8, 145, 178, 0.2) 100%);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.demo-header {
  margin-bottom: 20px;
}
.demo-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.demo-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.demo-map {
  flex: 1;
  background: rgba(8, 145, 178, 0.1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-zone {
  width: 200px;
  height: 200px;
  border: 3px dashed rgba(8, 145, 178, 0.6);
  border-radius: 50%;
  position: absolute;
  animation: rotate 20s linear infinite;
}
.map-marker {
  font-size: 48px;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.map-pulse {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--cyan-400);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
.demo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.demo-stat {
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.stat-value {
  font-size: 28px;
  font-weight: 800;
  background: var(--grad-purple-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.demo-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.demo-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.demo-step {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--grad-cyan-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.demo-feature-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.demo-feature-item p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.pricing-card.featured {
  background: rgba(147, 51, 234, 0.1);
  border-color: var(--purple-500);
  box-shadow: 0 0 60px rgba(147, 51, 234, 0.3);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-purple-cyan);
  color: white;
  padding: 6px 20px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.price-amount {
  font-size: 48px;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-period {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
}
.price-desc {
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.features-list {
  list-style: none;
  margin-bottom: 32px;
}
.features-list li {
  padding: 12px 0;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.features-list li:last-child {
  border: none;
}

/* Waitlist */
.waitlist-section {
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.3) 0%, rgba(15, 23, 42, 0.8) 100%);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.waitlist-box {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 64px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}
.waitlist-form {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.waitlist-form input,
.waitlist-form select {
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.2s;
}
.waitlist-form select option {
  background: var(--slate-900);
  color: white;
}
.waitlist-form input::placeholder {
  color: rgba(255,255,255,0.5);
}
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
  background: rgba(255,255,255,0.08);
}
.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding: 40px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: white;
}
.success-msg h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
}
.success-msg p {
  color: rgba(255,255,255,0.8);
}

/* Footer */
.footer {
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-desc {
  color: rgba(255,255,255,0.6);
  margin: 16px 0 24px;
  line-height: 1.7;
}
.social {
  display: flex;
  gap: 12px;
}
.social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}
.social a:hover {
  background: var(--grad-purple-cyan);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 100px 0 60px; }
  .h1 { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .h1 { font-size: 36px; }
  .h2 { font-size: 32px; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; }
  .section { padding: 80px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .waitlist-box { padding: 40px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .demo-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
