/* =========================================
   Shopyzo Landing Page - Main CSS Engine
   Architect Edition (Colors/Fonts Intact, 100% Responsive)
========================================= */

:root {
  --bg-primary: #0A1628;
  --bg-secondary: #0D1B2E;
  --bg-tertiary: #15202B;
  --accent-cyan: #00D4FF;
  --accent-cyan-medium: #1FB8E8;
  --accent-cyan-soft: #00BCD4;
  --accent-orange: #FF9500;
  --accent-green: #00E676;
  --accent-red: #FF5252;
  --text-primary: #FFFFFF;
  --text-secondary: #B0BEC5;
  --text-muted: #78909C;
  --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.5);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Syne', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  width: 100%;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-cyan); border-radius: 3px; }

/* ── CANVAS BACKGROUND ── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,212,255,0.15);
  transition: all 0.3s;
}
nav.scrolled { padding: 12px 60px; border-bottom-color: rgba(0,212,255,0.35); }

.nav-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
  letter-spacing: 3px;
  text-decoration: none;
}
.nav-logo span { color: var(--text-primary); }

.nav-links { display: flex; gap: 36px; list-style: none; margin-bottom: 0;}
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-cyan);
  transition: width 0.3s;
  box-shadow: var(--glow-cyan);
}
.nav-links a:hover { color: var(--accent-cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, #00D4FF 0%, #1FB8E8 100%);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,212,255,0.4);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0,212,255,0.6) !important; }
.nav-cta::after { display: none !important; }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, #0A1628 0%, #0D1B2E 100%);
  overflow: hidden;
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content { position: relative; z-index: 2; max-width: 900px; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse-dot 1.5s infinite;
}

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

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title .line1 { display: block; color: #fff; }
.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, #00D4FF, #00E676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(0,212,255,0.5));
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.btn-primary {
  background: linear-gradient(135deg, #00D4FF 0%, #1FB8E8 100%);
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,212,255,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 48px rgba(0,212,255,0.6); }

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 14px 38px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { background: var(--accent-cyan); color: #fff; box-shadow: var(--glow-cyan); }

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  animation: fadeInUp 0.9s ease 0.5s both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.8s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-cyan), transparent);
  animation: scroll-anim 1.5s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ── SECTION BASE ── */
section { position: relative; z-index: 1; }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title span {
  background: linear-gradient(135deg, #00D4FF, #1FB8E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ── CUSTOMER APP ── */
#customer {
  padding: 100px 60px;
  background: var(--bg-secondary);
}

.app-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.app-feature-card {
  background: var(--bg-tertiary);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s;
  cursor: default;
}
.app-feature-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.feature-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.feature-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* PHONE MOCKUP */
.phone-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.phone-glow {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 40px;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.15) 0%, transparent 70%);
  filter: blur(30px);
  animation: phone-pulse 3s ease-in-out infinite;
}
@keyframes phone-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.phone-frame {
  position: relative;
  width: 280px;
  max-width: 100%;
  background: var(--bg-secondary);
  border: 2px solid var(--accent-cyan);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 0 40px rgba(0,212,255,0.3), 0 30px 60px rgba(0,0,0,0.5);
  z-index: 1;
}

.phone-notch {
  width: 70px; height: 20px;
  background: #0A1628;
  border-radius: 12px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: var(--bg-primary);
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── VENDOR APP ── */
#vendor {
  padding: 100px 60px;
  background: var(--bg-tertiary);
}

.vendor-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vendor-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}

.vendor-stat-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s;
}
.vendor-stat-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}
.vstat-value {
  font-family: 'Orbitron', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
}
.vstat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.vstat-change { font-size: 0.7rem; color: var(--accent-green); margin-top: 6px; font-weight: 700; }

/* Vendor phone with dashboard */
.vendor-phone-frame {
  position: relative;
  width: 280px;
  max-width: 100%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-cyan-medium);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 0 40px rgba(31,184,232,0.25), 0 30px 60px rgba(0,0,0,0.5);
  z-index: 1;
  overflow: hidden;
}
.vendor-phone-frame img {
  width: 100%;
  border-radius: 24px;
}

/* ── FEATURES ── */
#features {
  padding: 100px 60px;
  background: var(--bg-primary);
}
.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.features-header .section-label { justify-content: center; }
.features-header .section-label::before { display: none; }
.features-header .section-desc { margin: 0 auto; text-align: center; }

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feat-card {
  background: rgba(21,32,43,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover { border-color: rgba(0,212,255,0.4); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-cyan); }
.feat-card:hover::before { opacity: 1; }

.feat-icon-circle {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
  transition: all 0.3s;
}
.feat-card:hover .feat-icon-circle { background: rgba(0,212,255,0.2); box-shadow: 0 0 30px rgba(0,212,255,0.4); }

.feat-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feat-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ── HOW IT WORKS ── */
#how {
  padding: 100px 60px;
  background: var(--bg-secondary);
}
.how-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}
.how-header .section-label { justify-content: center; }
.how-header .section-label::before { display: none; }

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.step-connector {
  flex: 0.4;
  height: 2px;
  border-top: 2px dashed rgba(0,212,255,0.4);
  margin-top: 28px;
  position: relative;
}
.step-connector::after {
  content: '›';
  position: absolute;
  right: -6px;
  top: -12px;
  color: var(--accent-cyan);
  font-size: 1.2rem;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: var(--glow-cyan);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step:hover .step-num { transform: scale(1.15); box-shadow: var(--glow-cyan-strong); }

.step-card {
  background: var(--bg-tertiary);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 12px;
  padding: 20px 16px;
  width: 140px;
  transition: all 0.3s;
}
.step:hover .step-card { border-color: rgba(0,212,255,0.4); transform: translateY(-4px); }

.step-title { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.step-desc { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

/* ── PRICING ── */
#pricing {
  padding: 100px 60px;
  background: var(--bg-tertiary);
}
.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-label::before { display: none; }

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
}

.price-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }

.price-card.featured {
  border: 2px solid var(--accent-cyan);
  box-shadow: var(--glow-cyan), 0 8px 32px rgba(0,0,0,0.3);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-8px); box-shadow: var(--glow-cyan-strong), 0 24px 64px rgba(0,0,0,0.4); }

.price-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent-orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.plan-name {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.plan-price {
  font-family: 'Orbitron', monospace;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price span { font-size: 1.2rem; }
.plan-period { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 28px; }

.plan-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.plan-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}
.plan-features li.disabled::before { content: '×'; color: var(--accent-red); }

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 100px 60px;
  background: var(--bg-primary);
}
.test-header {
  text-align: center;
  margin-bottom: 60px;
}
.test-header .section-label { justify-content: center; }
.test-header .section-label::before { display: none; }

.test-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: rgba(21,32,43,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.test-card:hover { border-color: rgba(0,212,255,0.35); transform: translateY(-4px); }

.stars {
  color: var(--accent-orange);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.test-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.test-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--bg-tertiary);
}
.author-name { font-weight: 700; font-size: 0.85rem; color: #fff; }
.author-role { font-size: 0.72rem; color: var(--text-muted); }

/* ── CTA SECTION ── */
#cta {
  padding: 100px 60px;
  background: var(--bg-secondary);
  text-align: center;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cta-glow-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #00D4FF 60%, #00E676 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,212,255,0.4));
}
.cta-desc { color: var(--text-secondary); margin-bottom: 40px; font-size: 1rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(0,188,212,0.2);
  padding: 60px 60px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { font-size: 1.3rem; display: block; margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; margin-bottom: 20px; }

.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.social-icon:hover { border-color: var(--accent-cyan); box-shadow: var(--glow-cyan); color: var(--accent-cyan); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-cyan); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(0,188,212,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ── 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); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PROGRESS BARS ── */
.progress-bar-bg {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  box-shadow: 0 0 8px rgba(0,212,255,0.5);
  transition: width 1.5s ease 0.5s;
  width: 0;
}

/* Neon border pulse */
@keyframes neon-pulse {
  0%, 100% { box-shadow: var(--glow-cyan); }
  50% { box-shadow: var(--glow-cyan-strong); }
}
.price-card.featured { animation: neon-pulse 2.5s ease-in-out infinite; }

/* ==========================================================================
   💥 ARCHITECT FIX FINAL: GOD MODE MOBILE ENGINE (ZERO OVERFLOW GUARANTEED)
   ========================================================================== */

@media (max-width: 991px) {
    
    /* 1. THE NUCLEAR ROOT LOCK (Kills 100vw scrollbar bleed) */
    html, body { 
        overflow-x: hidden !important; 
        width: 100% !important; /* MUST BE 100%, NEVER 100vw */
        max-width: 100% !important; 
        margin: 0 !important; 
        padding: 0 !important; 
        position: relative !important;
    }

    /* 2. FORCE EVERY ELEMENT TO OBEY SCREEN WIDTH */
    *, *::before, *::after {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 3. SWIPEABLE NAVBAR (Fixed Width) */
    #navbar { flex-direction: column !important; padding: 15px 0px 5px 0px !important; align-items: center !important; gap: 10px !important; width: 100% !important; }
    .nav-logo { margin-bottom: 5px; }
    .nav-links {
        display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important;
        overflow-x: auto !important; 
        width: 100% !important; /* CHANGED FROM 100vw */
        max-width: 100% !important;
        justify-content: flex-start !important; gap: 20px !important; padding: 0px 20px 10px 20px !important;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links li a { white-space: nowrap !important; font-size: 13px !important; padding: 5px 0px !important; }
    .nav-cta { display: none !important; }

    /* 4. SHATTER DESKTOP GRIDS */
    .app-section-inner, .vendor-inner, .features-grid, .pricing-grid,
    .test-grid, .footer-grid, .app-features-grid, .vendor-stats-grid,
    .row, .d-flex, [class*="grid"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 5. SAFE SPACING */
    section, .container { padding: 60px 15px !important; overflow: hidden !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    #hero { padding: 135px 15px 50px !important; }
    .hero-title { font-size: 32px !important; }
    .section-title { font-size: 28px !important; }

    /* 6. FIX IMAGES & PHONES */
    .phone-mockup-wrap, .vendor-phone-frame { margin: 0 auto !important; width: 100% !important; max-width: 300px !important; }
    .vendor-phone-frame { margin-top: 20px; }
    img, video, canvas, iframe { max-width: 100% !important; height: auto !important; }

    /* 7. 💥 THE FINAL CONTACT FORM & CARD FIX (NO MORE MISMATCH) 💥 */
    .card, [class*="card"], form, .form-container, [class*="contact"] {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important; 
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        transform: none !important;
    }

    /* Force ALL inputs to behave and shrink */
    input, textarea, select, .form-control, button, .btn {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 0 15px 0 !important; 
        box-sizing: border-box !important;
    }

    /* Kill Bootstrap negative margins perfectly */
    .row { margin-left: 0 !important; margin-right: 0 !important; }
    .col, [class*="col-"] { 
        padding-left: 0 !important; 
        padding-right: 0 !important; 
        max-width: 100% !important; 
        flex: 0 0 100% !important; 
        width: 100% !important; 
    }
}