/* ============================================
   AutomationBoost - Style Principal
   Palette : Cyberpunk Noir/Or
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg-dark:     #050505;
  --bg-card:     #0d0d0d;
  --bg-card-2:   #111111;
  --border:      #1a1a1a;
  --gold:        #eab308;
  --gold-dark:   #ca8a04;
  --gold-glow:   rgba(234, 179, 8, 0.15);
  --gold-glow2:  rgba(234, 179, 8, 0.4);
  --text:        #e4e4e7;
  --text-muted:  #71717a;
  --text-light:  #a1a1aa;
  --red:         #ef4444;
  --green:       #22c55e;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-gold: 0 0 30px rgba(234,179,8,0.3), 0 0 60px rgba(234,179,8,0.1);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grille cyberpunk en arrière-plan */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(234,179,8,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234,179,8,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Effet scanlines */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 0;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }

p { color: var(--text-light); }

.gold { color: var(--gold); }
.highlight { color: var(--gold); font-weight: 700; }

/* --- LAYOUT --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section { padding: 80px 0; }

/* --- NAVBAR --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

nav.scrolled {
  border-bottom-color: rgba(234,179,8,0.2);
  box-shadow: 0 4px 20px rgba(234,179,8,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 15px rgba(234,179,8,0.4);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.logo-text span { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 9px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: #fff;
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* --- HERO --- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234,179,8,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234,179,8,0.1);
  border: 1px solid rgba(234,179,8,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title .line-1 {
  display: block;
  color: var(--text);
}

.hero-title .line-2 {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(234,179,8,0.4);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 34px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(234,179,8,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234,179,8,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dashboard mockup */
.hero-visual {
  position: relative;
  z-index: 1;
}

.dashboard-mockup {
  background: var(--bg-card);
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold), 0 40px 80px rgba(0,0,0,0.6);
  animation: float 6s ease-in-out infinite;
}

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

.mockup-bar {
  background: #0a0a0a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.mockup-content {
  padding: 20px;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.mockup-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--green);
}

.status-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.mockup-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.platform-chip {
  background: rgba(234,179,8,0.08);
  border: 1px solid rgba(234,179,8,0.15);
  border-radius: var(--radius);
  padding: 10px 8px;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 600;
}

.platform-chip .icon {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.mockup-post-preview {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 12px;
}

.post-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-text {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.post-text .tag { color: var(--gold); }

.mockup-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.metric-box {
  background: rgba(234,179,8,0.05);
  border: 1px solid rgba(234,179,8,0.1);
  border-radius: var(--radius);
  padding: 10px;
  text-align: center;
}

.metric-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.metric-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --- SECTION TITLE --- */
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}
.text-center { text-align: center; }

/* --- PROBLEM SECTION --- */
#problem {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #080808 100%);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.problem-card:hover::before { opacity: 1; }
.problem-card:hover { border-color: rgba(239,68,68,0.2); transform: translateY(-3px); }

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.solution-arrow {
  text-align: center;
  font-size: 2.5rem;
  color: var(--gold);
  margin: 40px 0;
  animation: bounce 2s ease-in-out infinite;
}

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

/* --- FEATURES --- */
#features {
  background: #080808;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(234,179,8,0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(234,179,8,0.1);
}

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

.feature-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(234,179,8,0.15), rgba(234,179,8,0.05));
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* --- HOW IT WORKS --- */
#how-it-works {
  background: linear-gradient(180deg, #080808 0%, var(--bg-dark) 100%);
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.steps-line {
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(234,179,8,0.1) 100%);
}

.step-item {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  align-items: flex-start;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #000;
  box-shadow: 0 0 20px rgba(234,179,8,0.4);
  position: relative;
  z-index: 1;
}

.step-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  flex: 1;
  transition: all 0.3s ease;
}

.step-content:hover {
  border-color: rgba(234,179,8,0.25);
  box-shadow: 0 4px 20px rgba(234,179,8,0.08);
}

.step-content h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.step-content p { font-size: 0.95rem; }

/* --- DEMO VISUAL --- */
#demo {
  background: #080808;
  padding: 80px 0;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.demo-text .section-label { display: block; margin-bottom: 12px; }

.demo-text h2 { margin-bottom: 20px; }
.demo-text p { margin-bottom: 20px; }

.demo-list {
  list-style: none;
  margin-bottom: 32px;
}

.demo-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.demo-list li:last-child { border-bottom: none; }

.demo-list .check {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.demo-screen {
  background: var(--bg-card);
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.screen-header {
  background: #0a0a0a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.screen-body { padding: 20px; }

.queue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.queue-item:hover {
  border-color: rgba(234,179,8,0.2);
  background: rgba(234,179,8,0.03);
}

.qi-platform {
  font-size: 1.2rem;
  width: 32px;
  text-align: center;
}

.qi-content { flex: 1; }

.qi-title {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}

.qi-time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.qi-status {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.status-done { background: rgba(34,197,94,0.1); color: var(--green); }
.status-sched { background: rgba(234,179,8,0.1); color: var(--gold); }
.status-draft { background: rgba(255,255,255,0.05); color: var(--text-muted); }

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

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-card:hover {
  border-color: rgba(234,179,8,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(234,179,8,0.08);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
}

.author-name {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testi-result {
  display: inline-block;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- PRICING --- */
#pricing {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #080808 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: rgba(234,179,8,0.5);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}

.pricing-card.featured:hover { transform: scale(1.05); }
.pricing-card:not(.featured):hover { transform: translateY(-4px); }

.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.plan-price {
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
}

.pricing-card.featured .price-amount { color: var(--gold); }

.price-currency {
  font-size: 1.4rem;
  vertical-align: super;
  color: var(--text-muted);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.plan-features li .check { color: var(--gold); }
.plan-features li .x { color: var(--text-muted); }

/* --- URGENCY --- */
#urgency {
  background: #080808;
  padding: 60px 0;
}

.urgency-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(234,179,8,0.06) 0%, rgba(234,179,8,0.02) 100%);
  border: 1px solid rgba(234,179,8,0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.urgency-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.urgency-box h2 { margin-bottom: 16px; }
.urgency-box p { margin-bottom: 32px; }

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}

.cd-item {
  text-align: center;
}

.cd-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  background: rgba(234,179,8,0.1);
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: var(--radius);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
}

.spots-bar {
  max-width: 400px;
  margin: 0 auto 32px;
}

.spots-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.spots-text span:last-child { color: var(--red); font-weight: 700; }

.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 100px;
  transition: width 1s ease;
}

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

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(234,179,8,0.1);
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(234,179,8,0.2); }

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

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

.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* --- FINAL CTA --- */
#final-cta {
  background: #080808;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(234,179,8,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-box h2 { margin-bottom: 20px; }
.cta-box p { font-size: 1.1rem; margin-bottom: 40px; }

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-guarantee .shield { color: var(--gold); font-size: 1.2rem; }

/* --- FOOTER --- */
footer {
  background: #030303;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  section { padding: 60px 0; }

  .hero-stats { gap: 24px; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .countdown { gap: 12px; }
  .cd-number { width: 56px; height: 56px; font-size: 1.8rem; }

  .urgency-box { padding: 32px 20px; }

  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }

  .steps-line { display: none; }
  .step-item { flex-direction: column; }
  .step-number { width: 44px; height: 44px; font-size: 0.9rem; }
}

@media (max-width: 640px) {
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
