:root {
  --sol-purple: #9945FF;
  --sol-green: #14F195;
  --sol-cyan: #03E1FF;
  --sol-pink: #DC1FFF;
  --sol-bg: #07091a;
  --sol-bg2: #0d1028;
  --sol-card: #111428;
  --sol-border: rgba(153, 69, 255, 0.22);
  --sol-border-hover: rgba(153, 69, 255, 0.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--sol-bg);
  background-image: linear-gradient(180deg, #0a0c22 0%, #07091a 100%);
  color: #dde6f5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

/* ===== BACKGROUND EFFECTS ===== */
.sol-bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--sol-bg);
}

.sol-bg-mesh::before {
  content: '';
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 75%;
  background: radial-gradient(ellipse at 50% 0%, rgba(153,69,255,0.22) 0%, rgba(3,225,255,0.06) 45%, transparent 70%);
  animation: float1 12s ease-in-out infinite;
}

.sol-bg-mesh::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(20, 241, 149, 0.08) 0%, transparent 70%);
  animation: float2 10s ease-in-out infinite;
}

.sol-orb-1 {
  position: fixed;
  top: 20%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(3, 225, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float3 12s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.sol-grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(153,69,255,0.14) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  opacity: 0.55;
}

/* ===== ANIMATIONS ===== */
@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 30px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(153, 69, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(153, 69, 255, 0.6), 0 0 80px rgba(153, 69, 255, 0.2); }
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes slide-right {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
.animate-delay-100 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-200 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-300 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-400 { animation-delay: 0.4s; opacity: 0; }
.animate-delay-500 { animation-delay: 0.5s; opacity: 0; }

/* ===== GRADIENT TEXT ===== */
.text-gradient-sol {
  background: linear-gradient(135deg, var(--sol-purple) 0%, var(--sol-cyan) 50%, var(--sol-green) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #b060ff, var(--sol-purple), #dc1fff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--sol-green), var(--sol-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== GLASS CARDS ===== */
.glass-card {
  background: rgba(16, 18, 42, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--sol-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: var(--sol-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(153, 69, 255, 0.15);
}

.glass-card-glow:hover {
  box-shadow: 0 8px 40px rgba(153, 69, 255, 0.25), 0 0 0 1px rgba(153, 69, 255, 0.3);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--sol-purple), #7c3aed);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(153, 69, 255, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(153, 69, 255, 0.1);
  border: 1px solid rgba(153, 69, 255, 0.4);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(153, 69, 255, 0.2);
  border-color: rgba(153, 69, 255, 0.7);
  transform: translateY(-2px);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--sol-green), var(--sol-cyan));
  border: none;
  border-radius: 12px;
  color: #0D0E14;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(20, 241, 149, 0.4);
}

/* ===== NAVBAR — styles now live in nav.php <style> block ===== */

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 48px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(153, 69, 255, 0.15);
  border: 1px solid rgba(153, 69, 255, 0.35);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sol-purple);
  margin-bottom: 24px;
}

.hero-badge .live-dot {
  width: 7px;
  height: 7px;
  background: var(--sol-green);
  border-radius: 50%;
  animation: live-pulse 1.5s ease infinite;
}

/* ===== TICKER ===== */
.ticker-wrapper {
  overflow: hidden;
  position: relative;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--sol-bg), transparent);
}

.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--sol-bg), transparent);
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.6);
}

.ticker-item .up { color: var(--sol-green); }
.ticker-item .down { color: #f87171; }

/* ===== STAT CARDS ===== */
.stat-card {
  background: rgba(26, 27, 46, 0.5);
  border: 1px solid rgba(153, 69, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(153, 69, 255, 0.5);
  background: rgba(153, 69, 255, 0.08);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: rgba(20, 21, 36, 0.7);
  border: 1px solid rgba(153, 69, 255, 0.18);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(153, 69, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover {
  border-color: rgba(153, 69, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(153, 69, 255, 0.12);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-icon.purple { background: linear-gradient(135deg, rgba(153, 69, 255, 0.3), rgba(153, 69, 255, 0.1)); border: 1px solid rgba(153, 69, 255, 0.3); }
.feature-icon.green { background: linear-gradient(135deg, rgba(20, 241, 149, 0.2), rgba(20, 241, 149, 0.05)); border: 1px solid rgba(20, 241, 149, 0.25); }
.feature-icon.cyan { background: linear-gradient(135deg, rgba(3, 225, 255, 0.2), rgba(3, 225, 255, 0.05)); border: 1px solid rgba(3, 225, 255, 0.25); }
.feature-icon.pink { background: linear-gradient(135deg, rgba(220, 31, 255, 0.2), rgba(220, 31, 255, 0.05)); border: 1px solid rgba(220, 31, 255, 0.25); }

/* ===== STEP CARDS ===== */
.step-card {
  position: relative;
  background: rgba(20, 21, 36, 0.6);
  border: 1px solid rgba(153, 69, 255, 0.18);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(153, 69, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(153, 69, 255, 0.15);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sol-purple), var(--sol-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(153, 69, 255, 0.5);
}

.step-connector {
  display: none;
  position: absolute;
  top: 60px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--sol-purple), transparent);
  z-index: 1;
}

@media (min-width: 768px) {
  .step-connector { display: block; }
}

/* ===== PLATFORM CARDS ===== */
.platform-card {
  background: rgba(20, 21, 36, 0.6);
  border: 1px solid rgba(153, 69, 255, 0.18);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.platform-card:hover {
  border-color: rgba(153, 69, 255, 0.5);
  background: rgba(153, 69, 255, 0.08);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(153, 69, 255, 0.2);
}

/* ===== PRICING ===== */
.pricing-highlight {
  position: relative;
  background: rgba(153, 69, 255, 0.05);
  border: 2px solid rgba(153, 69, 255, 0.4);
  border-radius: 24px;
  overflow: hidden;
}

.pricing-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sol-purple), var(--sol-cyan), var(--sol-green));
}

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--sol-green), var(--sol-cyan));
  color: #0D0E14;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ===== FAQ ===== */
.faq-item {
  background: rgba(20, 21, 36, 0.6);
  border: 1px solid rgba(153, 69, 255, 0.18);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(153, 69, 255, 0.45);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-trigger:hover { color: var(--sol-purple); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(153, 69, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--sol-purple);
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  background: var(--sol-purple);
  color: white;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-body {
  max-height: 400px;
}

.faq-content {
  padding: 0 24px 20px;
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: rgba(20, 21, 36, 0.7);
  border: 1px solid rgba(153, 69, 255, 0.2);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(153, 69, 255, 0.45);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(153, 69, 255, 0.2);
  font-family: Georgia, serif;
}

.star-rating {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ===== LIVE FEED ===== */
.live-feed {
  background: rgba(13, 14, 20, 0.8);
  border: 1px solid rgba(153, 69, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
}

.live-feed-header {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(153, 69, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-feed-item {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(153, 69, 255, 0.07);
  font-size: 0.82rem;
  animation: slide-right 0.4s ease;
}

.live-feed-item:last-child { border-bottom: none; }

.buy-badge {
  padding: 2px 8px;
  background: rgba(20, 241, 149, 0.15);
  border: 1px solid rgba(20, 241, 149, 0.3);
  border-radius: 4px;
  color: var(--sol-green);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sell-badge {
  padding: 2px 8px;
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 4px;
  color: #f87171;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(153, 69, 255, 0.1);
  text-align: center;
}

.compare-table th { font-weight: 700; font-size: 0.9rem; }
.compare-table td:first-child { text-align: left; color: rgba(226, 232, 240, 0.7); }

.check-yes { color: var(--sol-green); font-size: 1.1rem; }
.check-no { color: #4b5563; font-size: 1.1rem; }
.check-partial { color: #f59e0b; font-size: 1.1rem; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-label.purple {
  background: rgba(153, 69, 255, 0.12);
  border: 1px solid rgba(153, 69, 255, 0.3);
  color: var(--sol-purple);
}

.section-label.green {
  background: rgba(20, 241, 149, 0.1);
  border: 1px solid rgba(20, 241, 149, 0.25);
  color: var(--sol-green);
}

/* ===== FOOTER ===== */
.sol-footer {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(153,69,255,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(3,225,255,0.07) 0%, transparent 50%),
    linear-gradient(180deg, rgba(12,8,28,0.98) 0%, rgba(7,6,18,1) 100%);
  border-top: 1px solid rgba(153,69,255,0.18);
  box-shadow: inset 0 1px 0 rgba(153,69,255,0.12), 0 -8px 40px rgba(0,0,0,0.4);
  padding: 64px 24px 32px;
  position: relative;
}

/* ===== GLOW EFFECTS ===== */
.glow-purple { text-shadow: 0 0 20px rgba(153, 69, 255, 0.6); }
.glow-green { text-shadow: 0 0 20px rgba(20, 241, 149, 0.6); }
.box-glow-purple { box-shadow: 0 0 30px rgba(153, 69, 255, 0.3); }
.box-glow-green { box-shadow: 0 0 30px rgba(20, 241, 149, 0.2); }

/* ===== SECTION DIVIDER ===== */
.sol-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(153, 69, 255, 0.3), rgba(20, 241, 149, 0.2), transparent);
  margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-bg {
  background: radial-gradient(ellipse at center, rgba(153, 69, 255, 0.12) 0%, transparent 70%);
  border: 1px solid rgba(153, 69, 255, 0.25);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.cta-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sol-purple), var(--sol-green), var(--sol-cyan));
}

/* ===== MOBILE MENU — styles now live in nav.php <style> block ===== */

/* ===== DASHBOARD STYLES ===== */
.platform-btn {
  background: rgba(26, 27, 46, 0.8);
  border: 1px solid rgba(153, 69, 255, 0.2);
  border-radius: 12px;
  padding: 12px 8px;
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.platform-btn:hover {
  border-color: rgba(153, 69, 255, 0.5);
  color: white;
}

.platform-btn.active {
  border-color: var(--sol-purple);
  background: rgba(153, 69, 255, 0.15);
  color: white;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  background: rgba(153, 69, 255, 0.2);
  outline: none;
  border-radius: 8px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sol-purple);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(153, 69, 255, 0.5);
}

.wallet-option {
  transition: all 0.2s ease;
}

.wallet-option:hover {
  border-color: rgba(153, 69, 255, 0.5) !important;
  background: rgba(153, 69, 255, 0.1) !important;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
  padding: 14px 20px;
  background: rgba(26, 27, 46, 0.95);
  border: 1px solid rgba(153, 69, 255, 0.4);
  border-radius: 12px;
  color: white;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: fadeInUp 0.3s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section { padding: 24px 20px 48px; text-align: center; }
  h1 { font-size: clamp(2rem, 8vw, 3.5rem) !important; }
  .btn-primary, .btn-secondary, .btn-green { width: 100%; justify-content: center; }
  .sol-nav { padding: 0 16px; }
  .sol-footer { padding: 48px 20px 24px; }
}

@media (max-width: 480px) {
  .stat-number { font-size: 1.75rem; }
  .sol-footer { padding: 28px 16px 20px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sol-bg); }
::-webkit-scrollbar-thumb { background: rgba(153, 69, 255, 0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(153, 69, 255, 0.7); }

/* ===== FAQ LEGACY ===== */
.faq-answer {
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}
.faq-answer:not(.hidden) {
  max-height: 500px;
}
.faq-question i {
  transition: transform 0.3s ease;
}

/* ===== COOKIE CONSENT ===== */
#cookieConsent {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  z-index: 9000;
}

/* ===== HOMEPAGE ANIMATION HELPERS ===== */
@keyframes animate-fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp {
  animation: animate-fadeInUp 0.7s ease forwards;
  opacity: 0;
}
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }

/* ===== STAT CARD (hero stats mini) ===== */
.stat-card {
  background: rgba(16,17,30,0.8);
  border: 1px solid rgba(153,69,255,0.15);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
}
.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

/* ===== SECTION HEADING GRADIENT ALIASES ===== */
.text-gradient-green {
  background: linear-gradient(135deg, #14F195, #03E1FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== RESPONSIVE GRID HELPERS ===== */
@media (max-width: 900px) {
  .features-grid    { grid-template-columns: 1fr 1fr !important; }
  .steps-grid       { grid-template-columns: 1fr 1fr !important; }
  .testimonials-grid{ grid-template-columns: 1fr !important; }
  .platforms-grid   { grid-template-columns: repeat(3, 1fr) !important; }
  .steps-line       { display: none !important; }
}
@media (max-width: 560px) {
  .features-grid  { grid-template-columns: 1fr !important; }
  .steps-grid     { grid-template-columns: 1fr !important; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .price-examples { grid-template-columns: 1fr !important; }
}
