/* ============================================
   GHOST WORKFORCE — Landing Page v2
   Premium Dark 3D Design
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-dark: #0a0a0a;
  --bg-deep: #0d0d1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.08);
  --blue: #00d4ff;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --blue-glow: rgba(0, 212, 255, 0.15);
  --purple-glow: rgba(124, 58, 237, 0.15);
  --text-primary: #f0f0f0;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.35);
  --gradient-main: linear-gradient(135deg, #00d4ff, #7c3aed);
  --gradient-bg: linear-gradient(180deg, #0a0a0a 0%, #0d0d1a 50%, #0a0a0a 100%);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Dot Grid Background --- */
.dot-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* --- Ambient Glow Orbs --- */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}
.ambient-orb--blue {
  width: 600px;
  height: 600px;
  background: var(--blue);
  top: -200px;
  left: -150px;
  animation: orbFloat 20s ease-in-out infinite;
}
.ambient-orb--purple {
  width: 500px;
  height: 500px;
  background: var(--purple);
  bottom: -100px;
  right: -100px;
  animation: orbFloat 25s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
section {
  padding: 120px 0;
  position: relative;
}

/* --- Glass Card --- */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

/* --- 3D Card Effect --- */
.card-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.5s ease;
}
.card-3d-inner {
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}
.card-3d:hover .card-3d-inner {
  transform: rotateY(-2deg) rotateX(2deg) translateZ(10px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 30px rgba(0, 212, 255, 0.3), 0 0 60px rgba(124, 58, 237, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 212, 255, 0.45), 0 0 80px rgba(124, 58, 237, 0.25);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-2px);
}
.btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.nav-logo img {
  width: 36px;
  height: 36px;
}
.nav-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  position: relative;
}
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 60px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}
.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0, 212, 255, 0); }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Hero 3D Floating elements */
.hero-3d-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: 1200px;
  z-index: 1;
}
.floating-shape {
  position: absolute;
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(6px);
  animation: float3d 8s ease-in-out infinite;
}
.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(124,58,237,0.1));
  top: 20%;
  left: 8%;
  animation-delay: 0s;
  transform: rotate(15deg);
}
.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(0,212,255,0.08));
  top: 15%;
  right: 10%;
  animation-delay: -2s;
  border-radius: 50%;
}
.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0,212,255,0.12), transparent);
  bottom: 25%;
  left: 12%;
  animation-delay: -4s;
  transform: rotate(-20deg);
}
.floating-shape:nth-child(4) {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), transparent);
  bottom: 20%;
  right: 8%;
  animation-delay: -6s;
  border-radius: 24px;
  transform: rotate(30deg);
}
.floating-shape:nth-child(5) {
  width: 50px;
  height: 50px;
  background: rgba(0,212,255,0.06);
  top: 45%;
  left: 5%;
  animation-delay: -1s;
  border-radius: 12px;
}
.floating-shape:nth-child(6) {
  width: 70px;
  height: 70px;
  background: rgba(124,58,237,0.06);
  top: 50%;
  right: 5%;
  animation-delay: -3s;
  border-radius: 50%;
}

@keyframes float3d {
  0%, 100% { transform: translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg); }
  25% { transform: translateY(-20px) translateZ(30px) rotateX(5deg) rotateY(-5deg); }
  50% { transform: translateY(-10px) translateZ(15px) rotateX(-3deg) rotateY(3deg); }
  75% { transform: translateY(-25px) translateZ(20px) rotateX(4deg) rotateY(-4deg); }
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 4rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================
   LOGOS / SOCIAL PROOF BAR
   ============================================ */
.logos-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  text-align: center;
  overflow: hidden;
}
.logos-bar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.logos-track {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.35;
}
.logos-track span {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ============================================
   VIDEO DEMO
   ============================================ */
.video-section {
  padding: 120px 0;
}
.video-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.video-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.video-section p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  perspective: 1200px;
}
.video-frame {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  transform: rotateX(2deg);
  transition: transform 0.6s ease;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 212, 255, 0.08),
    0 0 120px rgba(124, 58, 237, 0.05);
}
.video-frame:hover {
  transform: rotateX(0deg);
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Placeholder overlay */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(124,58,237,0.05));
  cursor: pointer;
  transition: background 0.4s;
}
.video-placeholder:hover {
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(124,58,237,0.1));
}
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 1rem;
}
.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.6);
}
.video-play-btn svg {
  width: 32px;
  height: 32px;
  color: #fff;
  margin-left: 4px;
}
.video-placeholder span {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}
/* Glow behind video */
.video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0,212,255,0.08), rgba(124,58,237,0.05), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 120px 0;
}
.how-it-works .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.how-it-works h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.how-it-works .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
/* Connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--blue));
  opacity: 0.2;
  z-index: 0;
}
.step-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}
.step-icon {
  width: 56px;
  height: 56px;
  color: var(--blue);
  margin: 0 auto 1.2rem;
  opacity: 0.8;
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   RESULTS / STATS
   ============================================ */
.results {
  padding: 120px 0;
  position: relative;
}
.results .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.results h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.results .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s;
}
.stat-card:hover::before {
  opacity: 1;
}
.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  color: var(--blue);
  opacity: 0.7;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 120px 0;
}
.pricing .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pricing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.pricing .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.pricing-card-wrapper {
  max-width: 520px;
  margin: 0 auto;
  perspective: 1200px;
}
.pricing-card {
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.15);
  transform-style: preserve-3d;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: var(--gradient-main);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  pointer-events: none;
}
.pricing-popular {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 60px;
  background: var(--gradient-main);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 2rem;
}
.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.pricing-amount {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 4px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}
.pricing-card .btn {
  width: 100%;
}
/* Glow */
.pricing-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.08), transparent 70%);
  pointer-events: none;
}

/* ============================================
   CONTACT / LEAD FORM
   ============================================ */
.contact {
  padding: 120px 0;
}
.contact .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.contact .section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.contact-info {
  padding: 40px;
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.contact-features li svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-form-card {
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(0, 212, 255, 0.04);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option {
  background: #1a1a2e;
  color: var(--text-primary);
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show {
  display: block;
}
.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--blue);
  margin-bottom: 1rem;
}
.form-success h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--text-secondary);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.06), rgba(124,58,237,0.04), transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.2rem;
}
.final-cta p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-glass);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 28px;
  height: 28px;
}
.footer-brand span {
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--text-primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Number counter animation */
.counter-animated {
  display: inline-block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.2rem;
  }
  .nav-toggle {
    display: flex;
    z-index: 101;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .floating-shape {
    opacity: 0.4;
  }
  .floating-shape:nth-child(n+4) {
    display: none;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }
  .steps-grid::before {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card {
    padding: 36px 28px;
  }
  .pricing-amount {
    font-size: 3rem;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .stat-card {
    padding: 24px 16px;
  }
  .stats-grid {
    gap: 12px;
  }
}

/* --- Prefers Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .floating-shape {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
