/* ============================================
   APEXBEAT.AI - LANDING PAGES STYLES
   Modern Tech / SaaS Dark Theme
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-deep: #050511;
  --bg-surface: #0A0A1A;
  --bg-surface-light: #111128;
  --primary: #7F56D9;
  --primary-light: #9E77ED;
  --accent: #00E1FF;
  --accent-glow: rgba(0, 225, 255, 0.3);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);
  --success: #22C55E;
  --danger: #EF4444;
  --gradient-hero: radial-gradient(circle at 50% 0%, #2a1a5e 0%, #050511 60%);
  --gradient-text: linear-gradient(90deg, #9E77ED 0%, #00E1FF 100%);
  --gradient-purple-cyan: linear-gradient(135deg, #7F56D9 0%, #00E1FF 100%);
  --gradient-card: linear-gradient(135deg, rgba(127, 86, 217, 0.15) 0%, rgba(0, 225, 255, 0.08) 100%);
  --shadow-glow: 0 0 40px rgba(127, 86, 217, 0.2), 0 0 80px rgba(0, 225, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px) rotateY(-5deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

/* ---- Utility Classes ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-animated {
  background: linear-gradient(90deg, #9E77ED, #00E1FF, #9E77ED);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-purple-cyan);
  color: white;
  box-shadow: 0 4px 20px rgba(127, 86, 217, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(127, 86, 217, 0.5), 0 0 40px rgba(0, 225, 255, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  border-color: var(--primary-light);
  background: rgba(127, 86, 217, 0.1);
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.section-padding {
  padding: 96px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 128px 0;
  }
}

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

.max-w-lg {
  max-width: 512px;
}

.max-w-xl {
  max-width: 640px;
}

.max-w-2xl {
  max-width: 768px;
}

.max-w-3xl {
  max-width: 896px;
}

.max-w-4xl {
  max-width: 1024px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

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

.reveal.active {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- Hero Glow Effect ---- */
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(127, 86, 217, 0.4) 0%, rgba(0, 225, 255, 0.15) 40%, transparent 70%);
  filter: blur(80px);
  animation: pulseGlow 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* ---- Grid Pattern Background ---- */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(5, 5, 17, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(127, 86, 217, 0.15);
  border: 1px solid rgba(127, 86, 217, 0.3);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
  perspective: 1000px;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: var(--gradient-purple-cyan);
  border-radius: 24px;
  opacity: 0.15;
  filter: blur(30px);
  z-index: -1;
}

/* ---- Social Proof / Logos ---- */
.social-proof {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.social-proof-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  opacity: 0.5;
}

.logo-placeholder {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.5px;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(127, 86, 217, 0.15);
  border: 1px solid rgba(127, 86, 217, 0.3);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Testimonials ---- */
.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, rgba(127, 86, 217, 0.1) 0%, rgba(0, 225, 255, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  position: relative;
}

.stars {
  color: #FBBF24;
  font-size: 24px;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.testimonial-quote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-purple-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.author-info {
  text-align: left;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
}

.author-detail {
  font-size: 14px;
  color: var(--text-muted);
}

.quote-mark {
  position: absolute;
  top: 24px;
  left: 32px;
  font-size: 80px;
  color: rgba(127, 86, 217, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  padding: 40px 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(127, 86, 217, 0.15) 0%, rgba(0, 225, 255, 0.08) 100%);
  animation: float 6s ease-in-out infinite;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient-purple-cyan);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ---- Pain Points ---- */
.pain-points {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  position: relative;
}

.pain-points .section-title,
.pain-points .card-title {
  color: white;
}

.pain-points .card-desc {
  color: rgba(255,255,255,0.7);
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pain-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-card {
  padding: 40px 32px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.pain-card:hover {
  border-color: rgba(127, 86, 217, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pain-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(127, 86, 217, 0.3) 0%, rgba(0, 225, 255, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Solution Section ---- */
.solution-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.solution-feature:last-child {
  margin-bottom: 0;
}

.solution-feature.reverse {
  direction: rtl;
}

.solution-feature.reverse > * {
  direction: ltr;
}

@media (min-width: 768px) {
  .solution-feature {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.feature-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 225, 255, 0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.feature-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.feature-list .check {
  color: var(--success);
  font-weight: 700;
}

.feature-image img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ---- Social Proof Stats ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
}

.stat-number {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -3px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ---- Comparison Section ---- */
.comparison-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.comparison-row:hover {
  background: rgba(127, 86, 217, 0.05);
}

.comparison-header {
  display: none;
}

@media (min-width: 768px) {
  .comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}

.comp-traditional {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 15px;
  padding: 8px 0;
}

.comp-traditional .icon {
  color: var(--danger);
  font-size: 18px;
  flex-shrink: 0;
}

.comp-apexbeat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0;
}

.comp-apexbeat .icon {
  color: var(--success);
  font-size: 18px;
  flex-shrink: 0;
}

/* ---- Product Demo ---- */
.product-demo {
  position: relative;
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .demo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.demo-image img {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(127, 86, 217, 0.2) 0%, rgba(0, 225, 255, 0.1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Footer ---- */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.footer-logo span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 767px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-padding {
    padding: 64px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .testimonial-quote {
    font-size: 18px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-grid {
    gap: 32px;
  }

  .stat-number {
    font-size: 48px;
  }

  .solution-feature {
    margin-bottom: 48px;
  }

  .feature-title {
    font-size: 24px;
  }
}

/* ---- Shape Divider ---- */
.shape-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
}

.shape-divider .shape-fill {
  fill: #0f172a;
}

/* ---- Floating particles (decorative) ---- */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(127, 86, 217, 0.4);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* ---- Urgency Banner (Page 3) ---- */
.urgency-banner {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.2) 0%, rgba(127, 86, 217, 0.2) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.urgency-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.urgency-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.urgency-text span {
  color: #EF4444;
}

/* ---- Heatmap bar for comparison ---- */
.heat-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  overflow: hidden;
  margin-top: 8px;
}

.heat-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--gradient-purple-cyan);
  transition: width 1.5s ease;
}
