/* ENERGY REVOLUTION SYSTEM - CUSTOM DESIGN SYSTEM & ANIMATIONS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&display=swap');

:root {
  --color-obsidian: #07080C;
  --color-obsidian-card: #11131C;
  --color-fire-orange: #FF5500;
  --color-fire-amber: #FF8800;
  --color-gold: #FFB800;
  --color-cyan: #00E5FF;
  --color-green: #10B981;
}

body {
  font-family: 'Inter', sans-serif;
  color: #E2E8F0;
  background-color: #07080C;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Floating 3D Animation */
.animate-float {
  animation: floating3D 5s ease-in-out infinite;
}

@keyframes floating3D {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}

/* High Conversion CTA Pulse Glow */
.cta-btn-glow {
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px -5px rgba(255, 107, 0, 0.4);
}

.cta-btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 35px -5px rgba(255, 107, 0, 0.6);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Accordion Transition */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.accordion-content.open {
  max-height: 800px;
  transition: max-height 0.4s ease-in-out;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-icon.rotate {
  transform: rotate(180deg);
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(24, 199, 245, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #0F2D63;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #18C7F5;
}
