/* CSS Reset & Variables */
:root {
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-light: #818cf8;
  --bg-dark: #0f172a;
  --bg-darker: #0b0f19;
  --bg-card: rgba(30, 41, 59, 0.7);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent-green: #10b981;
  --accent-blue: #3b82f6;
  --accent-orange: #f59e0b;
  --border: rgba(255, 255, 255, 0.1);
  --glass: blur(12px);
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* For custom cursor */
}

h1, h2, h3, h4, .logo-p, .stat-num {
  font-family: 'Space Grotesk', sans-serif;
}

/* Custom Cursor */
.cursor {
  position: fixed; top: 0; left: 0; width: 10px; height: 10px;
  background: var(--primary); border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%);
  z-index: 9999;
}
.cursor-follower {
  position: fixed; top: 0; left: 0; width: 30px; height: 30px;
  border: 1px solid rgba(79, 70, 229, 0.5); border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%);
  z-index: 9998; transition: width 0.2s, height 0.2s, background 0.2s;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 0; transition: var(--transition);
  background: transparent;
}
nav.scrolled {
  background: rgba(15, 23, 42, 0.85); backdrop-filter: var(--glass);
  padding: 15px 0; border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { text-decoration: none; font-size: 1.5rem; font-weight: 800; color: white; display: flex; align-items: center; }
.logo-p { color: var(--primary); font-size: 1.8rem; margin-right: 2px; }
.logo-24 { color: var(--primary-light); }

.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-link { text-decoration: none; color: var(--text-muted); font-weight: 500; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: white; }

.nav-cta-group { display: flex; gap: 15px; }
.btn-outline-nav, .btn-cta-nav {
  text-decoration: none; padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: var(--transition);
}
.btn-outline-nav { border: 1px solid var(--border); color: white; }
.btn-outline-nav:hover { border-color: var(--text-muted); }
.btn-cta-nav { background: var(--primary); color: white; }
.btn-cta-nav:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; background: white; margin-bottom: 5px; transition: 0.3s; }

/* Hero Section */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at top right, #1e1b4b, var(--bg-dark) 60%); }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px; opacity: 0.2; transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
}
.glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.glow-1 { top: 20%; left: -10%; width: 400px; height: 400px; background: rgba(79, 70, 229, 0.4); }
.glow-2 { bottom: -10%; right: -10%; width: 500px; height: 500px; background: rgba(192, 132, 252, 0.3); }

.hero-content {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 50px;
  z-index: 1; width: 100%;
}
.hero-left { flex: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border);
  border-radius: 30px; font-size: 0.85rem; font-weight: 500; margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.badge-dot { width: 8px; height: 8px; background: var(--accent-green); border-radius: 50%; box-shadow: 0 0 10px var(--accent-green); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } }

.title-line { display: block; font-size: 4.5rem; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
.hero-desc { margin: 25px 0; font-size: 1.1rem; color: var(--text-muted); max-width: 500px; }

.hero-stats { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; background: rgba(0,0,0,0.2); border-radius: 12px; padding: 15px 25px; border: 1px solid var(--border); }
.stat-pill { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 700; color: white; display: inline-block; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 30px; background: var(--border); }

.hero-actions { display: flex; gap: 20px; margin-bottom: 30px; }
.btn-hero-primary {
  display: flex; align-items: center; gap: 10px; background: var(--primary); color: white;
  padding: 15px 30px; border-radius: 12px; font-weight: 600; text-decoration: none;
  transition: var(--transition); box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}
.btn-hero-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(79, 70, 229, 0.5); }
.btn-hero-ghost {
  display: flex; align-items: center; gap: 10px; color: white; text-decoration: none;
  padding: 15px 20px; font-weight: 600; transition: var(--transition);
}
.btn-hero-ghost:hover { color: var(--primary-light); }

.trust-badges { display: flex; gap: 20px; font-size: 0.85rem; color: var(--text-muted); }
.tb-icon { color: var(--primary-light); font-weight: bold; margin-right: 5px; }

/* Phone Mockup */
.hero-right { flex: 1; display: flex; justify-content: center; position: relative; }
.phone-mockup { position: relative; width: 300px; height: 620px; perspective: 1000px; }
.phone-frame {
  position: absolute; inset: 0; background: #000; border: 12px solid #2a2a35;
  border-radius: 40px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 0 2px rgba(255,255,255,0.1);
  overflow: hidden; transform: rotateY(-15deg) rotateX(5deg); transition: transform 0.5s ease;
}
.phone-mockup:hover .phone-frame { transform: rotateY(0deg) rotateX(0deg); }
.phone-screen { position: relative; width: 100%; height: 100%; background: #111827; display: flex; flex-direction: column; }
.phone-status { display: flex; justify-content: space-between; padding: 10px 20px; font-size: 0.75rem; color: white; font-weight: 600; }
.phone-map { flex: 1; position: relative; background: #1f2937; overflow: hidden; }
.map-label { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.6); padding: 5px 15px; border-radius: 20px; font-size: 0.7rem; backdrop-filter: blur(4px); z-index: 10; white-space: nowrap; }
.map-road { position: absolute; background: #374151; }
.map-road-h { width: 100%; height: 30px; transform: translateY(-50%); }
.map-road-v { height: 100%; width: 30px; transform: translateX(-50%); }
.map-pin { position: absolute; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; animation: floatPin 3s infinite ease-in-out; }
.map-pin.active { z-index: 5; animation: none; transform: translate(-50%, -100%) scale(1.1); }
@keyframes floatPin { 0%, 100% { transform: translate(-50%, -100%) translateY(0); } 50% { transform: translate(-50%, -100%) translateY(-5px); } }
.pin-bubble { background: white; color: black; font-weight: 700; font-size: 0.7rem; padding: 4px 8px; border-radius: 8px; margin-bottom: 4px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.pin-bubble.active { background: var(--primary); color: white; }
.pin-dot { width: 10px; height: 10px; background: white; border-radius: 50%; border: 2px solid #1f2937; }
.pin-dot.active { background: var(--primary); box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.3); }

.phone-card { background: #1e293b; border-radius: 20px 20px 0 0; padding: 20px; box-shadow: 0 -10px 20px rgba(0,0,0,0.5); z-index: 10; border-top: 1px solid rgba(255,255,255,0.1); }
.phone-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.phone-spot-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.phone-spot-avail { font-size: 0.75rem; color: var(--accent-green); display: flex; align-items: center; gap: 5px; }
.avail-dot { width: 6px; height: 6px; background: var(--accent-green); border-radius: 50%; }
.phone-spot-price { font-weight: 700; font-size: 1.1rem; }
.phone-card-tags { display: flex; gap: 8px; margin-bottom: 15px; }
.p-tag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 4px 8px; border-radius: 6px; font-size: 0.65rem; color: var(--text-muted); }
.phone-book-btn { width: 100%; padding: 12px; background: var(--primary); color: white; border: none; border-radius: 10px; font-weight: 600; cursor: pointer; }

.phone-decor { position: absolute; background: rgba(15, 23, 42, 0.8); backdrop-filter: var(--glass); border: 1px solid var(--border); border-radius: 12px; padding: 12px 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); animation: float 6s infinite ease-in-out; }
.phone-decor-1 { top: 10%; right: -60px; animation-delay: 0s; }
.phone-decor-2 { bottom: 20%; left: -80px; animation-delay: 2s; }
.phone-decor-3 { top: 40%; right: -80px; padding: 10px; display: flex; flex-direction: column; align-items: center; gap: 5px; animation-delay: 4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.decor-card { display: flex; align-items: center; gap: 10px; }
.decor-icon { font-size: 1.2rem; }
.decor-title { font-weight: 600; font-size: 0.85rem; color: white; }
.decor-sub { font-size: 0.7rem; color: var(--text-muted); white-space: nowrap; }
.decor-rating { font-weight: 700; color: var(--accent-orange); font-size: 0.9rem; margin-bottom: 2px; }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.7; }
.scroll-indicator span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--text-muted), transparent); overflow: hidden; position: relative; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: white; animation: scrollDrop 2s infinite cubic-bezier(0.77, 0, 0.175, 1); }
@keyframes scrollDrop { 0% { transform:  translateY(-100%); } 100% { transform: translateY(200%); } }

/* Shared Section Styles */
.section { padding: 120px 20px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 70px; max-width: 700px; margin-inline: auto; }
.sec-chip { display: inline-block; padding: 6px 12px; background: rgba(79, 70, 229, 0.1); color: var(--primary-light); border: 1px solid rgba(79, 70, 229, 0.2); border-radius: 20px; font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; margin-bottom: 20px; }
.sec-heading { font-size: 3rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; letter-spacing: -1px; }
.sec-desc { font-size: 1.1rem; color: var(--text-muted); }

/* How It Works */
.steps-container { position: relative; }
.step-track { position: absolute; top: 35px; left: 50px; right: 50px; height: 2px; background: rgba(255,255,255,0.05); z-index: 0; }
.step-progress-line { height: 100%; width: 0%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); transition: width 0.5s ease; box-shadow: 0 0 10px var(--primary); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 30px 25px; backdrop-filter: var(--glass); display: flex; flex-direction: column; align-items: center; text-align: center; transition: var(--transition); }
.step-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.step-num-wrap { position: absolute; top: -15px; background: var(--bg-dark); padding: 0 10px; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--primary-light); opacity: 0.5; }
.step-visual { width: 70px; height: 70px; background: rgba(79, 70, 229, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: var(--primary-light); border: 1px solid rgba(79, 70, 229, 0.2); transition: var(--transition); }
.step-card:hover .step-visual { background: var(--primary); color: white; transform: scale(1.1); box-shadow: 0 0 20px rgba(79, 70, 229, 0.4); }
.step-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 15px; color: white; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Live Demo Section */
.live-demo-section { padding: 100px 20px; background: var(--bg-darker); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.live-demo-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 80px; }
.live-demo-text { flex: 1; }
.live-demo-text .sec-heading { font-size: 2.5rem; text-align: left; }
.live-demo-text .sec-desc { text-align: left; margin-bottom: 40px; }
.live-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.live-feat { display: flex; align-items: flex-start; gap: 15px; padding: 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; transition: var(--transition); }
.live-feat:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); transform: translateY(-3px); }
.live-feat-icon { font-size: 1.5rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border-radius: 10px; }
.live-feat strong { display: block; color: white; font-size: 0.95rem; margin-bottom: 4px; }
.live-feat span { color: var(--text-muted); font-size: 0.8rem; line-height: 1.4; display: block; }

.live-demo-visual { flex: 1; position: relative; height: 500px; }
.demo-map-container { width: 100%; height: 100%; background: #1f2937; border-radius: 24px; border: 1px solid var(--border); overflow: hidden; position: relative; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.demo-map-header { position: absolute; top: 20px; left: 20px; right: 20px; display: flex; justify-content: space-between; z-index: 10; }
.demo-map-search { background: rgba(15,23,42,0.8); backdrop-filter: blur(10px); display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: var(--text-muted); flex: 1; max-width: 250px; }
.demo-map-filter { background: rgba(15,23,42,0.8); backdrop-filter: blur(10px); padding: 12px 20px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; font-weight: 500; }
.demo-map-body { width: 100%; height: 100%; position: relative; }
.demo-map-grid { position: absolute; inset: 0; background-image: radial-gradient(#374151 1px, transparent 1px); background-size: 20px 20px; opacity: 0.3; }
.demo-road { position: absolute; background: #374151; }
.demo-road.h { width: 100%; height: 60px; transform: translateY(-50%); }
.demo-road.v { height: 100%; width: 60px; transform: translateX(-50%); }
.demo-pin { position: absolute; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; transition: 0.3s; cursor: pointer; }
.demo-pin:hover { transform: translate(-50%, -100%) scale(1.1); z-index: 20; }
.dp-bubble { background: white; color: black; font-weight: 700; font-size: 0.85rem; padding: 6px 12px; border-radius: 12px; margin-bottom: 6px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3); transition: 0.3s; }
.dp-bubble.green { color: var(--accent-green); }
.dp-bubble.orange { color: var(--accent-orange); }
.dp-bubble.selected { background: var(--primary); color: white; transform: scale(1.1); }
.dp-stem { width: 4px; height: 16px; background: white; border-radius: 2px; }
.dp-stem.orange { background: var(--accent-orange); }
.dp-stem.blue { background: var(--primary); }

.demo-popup { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(15,23,42,0.9); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: 20px; padding: 20px; z-index: 30; transform: translateY(120%); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); opacity: 0; pointer-events: none; }
.demo-popup.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.dp-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
.dp-name { font-weight: 600; font-size: 1.1rem; color: white; margin-bottom: 4px; }
.dp-loc { font-size: 0.8rem; color: var(--text-muted); }
.dp-price-badge { background: rgba(79, 70, 229, 0.2); color: var(--primary-light); padding: 8px 12px; border-radius: 10px; font-weight: 700; font-size: 1.2rem; }
.dp-price-badge small { font-size: 0.75rem; font-weight: 500; }
.dp-meta { display: flex; gap: 10px; margin-bottom: 20px; }
.dp-tag { background: rgba(255,255,255,0.05); padding: 5px 10px; border-radius: 6px; font-size: 0.75rem; color: var(--text-muted); }
.dp-tag.green-tag { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); font-weight: 600; }
.dp-btn { width: 100%; padding: 14px; background: var(--primary); color: white; border: none; border-radius: 12px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: 0.2s; }
.dp-btn:hover { background: var(--primary-hover); transform: translateY(-2px); }

.demo-legend { position: absolute; bottom: 20px; left: 20px; right: 20px; display: flex; gap: 15px; justify-content: center; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); padding: 8px; border-radius: 20px; z-index: 10; transition: 0.3s; }
.demo-legend.hide { opacity: 0; pointer-events: none; }
.legend-item { font-size: 0.75rem; color: white; display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.green { background: var(--accent-green); }
.legend-dot.orange { background: var(--accent-orange); }
.legend-dot.blue { background: var(--primary); }

/* Apps Section */
.apps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.app-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 32px; overflow: hidden; position: relative; padding: 50px 40px 0; display: flex; flex-direction: column; }
.app-card-glow { position: absolute; top: -20%; left: -10%; width: 50%; height: 50%; background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%); filter: blur(40px); z-index: 0; pointer-events: none; }
.partner-glow { background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%); left: auto; right: -10%; }
.app-card-content { position: relative; z-index: 1; margin-bottom: 40px; }
.app-label { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 20px; font-size: 0.75rem; font-weight: 600; margin-bottom: 25px; }
.app-label-dot { width: 6px; height: 6px; border-radius: 50%; }
.driver-dot { background: var(--primary-light); }
.partner-dot { background: var(--accent-orange); }
.app-title { font-size: 2.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.app-title span { color: var(--text-muted); font-size: 1.8rem; font-weight: 500; font-family: 'Inter', sans-serif; display: block; margin-top: 5px; }
.app-desc { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.7; }

.app-features-list { margin-bottom: 40px; }
.afl-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.95rem; }
.afl-check { color: var(--primary-light); font-weight: bold; }
.partner-check { color: var(--accent-orange); }

.dl-btn { display: inline-flex; align-items: center; gap: 10px; background: white; color: black; padding: 14px 24px; border-radius: 12px; font-weight: 600; text-decoration: none; transition: var(--transition); }
.dl-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.1); }
.partner-dl { background: linear-gradient(135deg, #f59e0b, #d97706); color: white; }

.app-showcase { position: relative; height: 350px; margin-top: auto; display: flex; justify-content: center; }
.app-screen-wrap { width: 280px; height: 400px; background: #000; border-radius: 24px 24px 0 0; padding: 10px 10px 0; border: 4px solid #334155; border-bottom: none; box-shadow: 0 -20px 40px rgba(0,0,0,0.5); }
.app-mini-screen { width: 100%; height: 100%; background: #111827; border-radius: 16px 16px 0 0; overflow: hidden; padding: 20px; }

/* Driver Screen Mini UI */
.ams-header { margin-bottom: 20px; }
.ams-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: white; }
.ams-sub { font-size: 0.8rem; color: var(--text-muted); }
.ams-search { background: #1f2937; padding: 12px 15px; border-radius: 12px; display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.05); }
.ams-spots { display: flex; flex-direction: column; gap: 10px; }
.ams-spot { background: #1f2937; padding: 15px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; border: 1px solid transparent; }
.ams-spot.active { border-color: var(--primary); background: rgba(79, 70, 229, 0.1); }
.ams-spot-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: white; }
.ams-spot-tags { display: flex; gap: 6px; }
.ams-spot-tags span { background: rgba(255,255,255,0.05); font-size: 0.6rem; padding: 2px 6px; border-radius: 4px; color: var(--text-muted); }
.ams-spot-price { font-weight: 700; font-size: 0.9rem; color: white; }

/* Partner Screen Mini UI */
.partner-header { border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; margin-bottom: 25px; }
.earnings-today { font-size: 2rem; font-weight: 800; color: white; margin: 10px 0; }
.earnings-bar-chart { display: flex; justify-content: space-between; align-items: flex-end; height: 120px; margin-bottom: 30px; }
.ebc-bar { width: 12%; background: rgba(255,255,255,0.1); border-radius: 4px 4px 0 0; position: relative; transition: height 1s ease; }
.ebc-bar.active { background: var(--accent-orange); }
.ebc-bar span { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); font-size: 0.65rem; color: var(--text-muted); }
.loyalty-badge-row { background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 12px; padding: 15px; text-align: center; }
.loyalty-badge { font-weight: 700; font-size: 0.9rem; color: var(--accent-orange); margin-bottom: 4px; }
.loyalty-badge-sub { font-size: 0.7rem; color: var(--text-muted); }

/* Customizations for Plans */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.plans-grid-4 { grid-template-columns: repeat(4, 1fr); }
.plan-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 40px 30px; transition: var(--transition); position: relative; }
.plan-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.plan-card.featured { border-color: var(--primary); background: linear-gradient(180deg, rgba(79, 70, 229, 0.1) 0%, var(--bg-card) 50%); transform: scale(1.05); z-index: 2; }
.plan-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.plan-badge-top { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; font-size: 0.75rem; font-weight: 700; padding: 6px 16px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.plan-header { margin-bottom: 25px; display: flex; align-items: center; gap: 15px; }
.plan-icon { font-size: 2rem; }
.plan-name { font-size: 1.5rem; font-weight: 700; }
.plan-price-block { margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.plan-price { font-size: 1.5rem; font-weight: 600; color: var(--text-muted); }
.plan-price span { font-size: 3.5rem; font-weight: 800; color: white; font-family: 'Space Grotesk', sans-serif; letter-spacing: -2px; }
.plan-period { font-size: 0.85rem; color: var(--text-muted); }
.plan-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 25px; line-height: 1.6; }
.plan-features { list-style: none; margin-bottom: 35px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; color: #e2e8f0; }
.plan-features li::before { content: '✓'; color: var(--primary-light); font-weight: bold; }
.plan-btn { display: block; width: 100%; text-align: center; padding: 15px; border-radius: 12px; background: rgba(255,255,255,0.05); color: white; font-weight: 600; text-decoration: none; border: 1px solid var(--border); transition: var(--transition); }
.plan-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.featured-btn { background: var(--primary); border-color: var(--primary); }
.featured-btn:hover { background: var(--primary-hover); border-color: var(--primary-hover); }

/* Partner CTA Block */
.partner-earn-card { background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9)); border: 1px solid var(--border); border-radius: 32px; display: flex; overflow: hidden; position: relative; }
.pec-left { flex: 1.5; padding: 60px; z-index: 2; }
.pec-chip { display: inline-block; padding: 6px 12px; background: rgba(245, 158, 11, 0.1); color: var(--accent-orange); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; }
.pec-title { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.pec-title .gradient-text { background: linear-gradient(135deg, #fcd34d, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pec-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.7; max-width: 500px; }
.pec-stats { display: flex; gap: 40px; margin-bottom: 40px; }
.pec-stat-num { font-size: 2.5rem; font-weight: 800; color: white; font-family: 'Space Grotesk', sans-serif; line-height: 1; margin-bottom: 5px; }
.pec-stat-lbl { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.btn-partner-earn { display: inline-flex; align-items: center; background: linear-gradient(135deg, #f59e0b, #d97706); color: white; padding: 15px 30px; border-radius: 12px; font-weight: 600; text-decoration: none; transition: var(--transition); box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3); }
.btn-partner-earn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4); }

.pec-right { flex: 1; background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>'); position: relative; display: flex; align-items: center; justify-content: center; }
.pec-right::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(15, 23, 42, 0.9), transparent); }
.pec-visual { position: relative; z-index: 2; width: 280px; transform: rotate(5deg); transition: transform 0.5s ease; }
.partner-earn-card:hover .pec-visual { transform: rotate(0deg) scale(1.05); }
.pec-earnings-display { background: rgba(15, 23, 42, 0.8); backdrop-filter: var(--glass); border: 1px solid rgba(245, 158, 11, 0.3); border-radius: 20px; padding: 30px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.pec-month { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 5px; }
.pec-amount { font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 10px; }
.pec-growth { display: inline-block; background: rgba(16, 185, 129, 0.1); color: var(--accent-green); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 30px; }
.pec-bar-row { display: flex; justify-content: space-between; align-items: flex-end; height: 100px; gap: 8px; }
.pec-bar { flex: 1; background: rgba(255,255,255,0.1); border-radius: 4px; border-top: 2px solid transparent; }
.pec-bar.active { background: linear-gradient(to top, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.8)); border-color: #fcd34d; box-shadow: 0 0 15px rgba(245, 158, 11, 0.5); }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; text-align: center; }
  .title-line { font-size: 3.5rem; }
  .hero-desc { margin: 25px auto; }
  .hero-actions { justify-content: center; }
  .trust-badges { justify-content: center; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step-track { display: none; }
  .live-demo-inner { flex-direction: column; }
  .apps-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .plan-card.featured { transform: scale(1); }
  .plan-card.featured:hover { transform: translateY(-10px); }
  .partner-earn-card { flex-direction: column; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-group { display: none; }
  .hamburger { display: block; }
  .title-line { font-size: 2.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .pec-left { padding: 40px 20px; }
  .pec-visual { width: 100%; max-width: 300px; }
}

/* ─── FAQ Section ─── */
.faq-section { background: var(--bg-darker); border-top: 1px solid var(--border); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 50px; }
.faq-col { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: rgba(255,255,255,0.15); }
.faq-item.open { border-color: rgba(79,70,229,0.4); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 15px; padding: 22px 24px; background: none; border: none; cursor: pointer; color: white; font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif; text-align: left; transition: color 0.2s; }
.faq-q:hover { color: var(--primary-light); }
.faq-item.open .faq-q { color: var(--primary-light); }
.faq-icon { font-size: 1.4rem; font-weight: 300; color: var(--text-muted); transition: transform 0.3s ease, color 0.2s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary-light); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 22px; }
.faq-a p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin: 0; }
.faq-a strong { color: white; }
.faq-footer { text-align: center; padding-top: 10px; }
.faq-footer p { color: var(--text-muted); margin-bottom: 15px; font-size: 1rem; }
.faq-contact-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-light); text-decoration: none; font-weight: 600; font-size: 1rem; transition: 0.2s; border: 1px solid rgba(79,70,229,0.3); padding: 12px 24px; border-radius: 10px; }
.faq-contact-btn:hover { background: rgba(79,70,229,0.1); border-color: var(--primary); }

/* ─── Floating Action Buttons ─── */
.fab-whatsapp { position: fixed; bottom: 90px; right: 25px; width: 54px; height: 54px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 9000; box-shadow: 0 8px 25px rgba(37,211,102,0.4); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; }
.fab-whatsapp:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 15px 35px rgba(37,211,102,0.5); }
.fab-scroll-top { position: fixed; bottom: 25px; right: 25px; width: 44px; height: 44px; background: rgba(79,70,229,0.85); backdrop-filter: blur(8px); color: white; border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 9000; box-shadow: 0 8px 20px rgba(79,70,229,0.3); transition: opacity 0.3s, transform 0.3s; opacity: 0; pointer-events: none; }
.fab-scroll-top.show { opacity: 1; pointer-events: auto; }
.fab-scroll-top:hover { transform: translateY(-3px); background: var(--primary); box-shadow: 0 12px 25px rgba(79,70,229,0.5); }

/* ─── 4-column plans responsive ─── */
@media (max-width: 1200px) { .plans-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .plans-grid-4 { grid-template-columns: 1fr; } }

/* ─── FAQ responsive ─── */
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .fab-whatsapp { bottom: 80px; right: 15px; width: 48px; height: 48px; }
  .fab-scroll-top { bottom: 20px; right: 15px; }
}

