/* Landing Page Specific CSS */

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

/* Interactive Hero */
.interactive-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}
.hero-btn-glow {
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
  transition: all 0.3s ease;
}
.hero-btn-glow:hover {
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
  transform: translateY(-3px) scale(1.02);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes floatElement {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.pulse-float {
  animation: floatElement 4s ease-in-out infinite;
}

/* Interactive Sections */
.interactive-section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 60px;
}

/* Steps (How it works) */
.steps-interactive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 30px;
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-10px);
  border-color: var(--insight);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.step-icon {
  font-size: 2.5rem;
  color: var(--income);
  margin-bottom: 20px;
}
.step-card span {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}
.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Features Grid */
.feature-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.feat-card {
  background: rgba(18, 24, 35, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.feat-card:hover {
  background: rgba(18, 24, 35, 0.9);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-5px);
}
.feat-icon {
  font-size: 2rem;
  color: var(--lavender);
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgba(167, 139, 250, 0.1);
  display: grid;
  place-items: center;
}
.feat-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.feat-card p {
  color: var(--muted);
  line-height: 1.6;
}
.feat-card-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(18, 24, 35, 0.6) 100%);
}

/* Testimonials */
.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  color: rgba(255,255,255,0.05);
  font-family: serif;
  line-height: 1;
}
.testimonial-card .quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 30px;
}
.author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--insight);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.author small {
  display: block;
  color: var(--muted);
}

/* Pricing */
.bg-darker {
  background: rgba(8, 11, 18, 0.4);
  border-radius: 30px;
}
.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--insight);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(99, 102, 241, 0.3);
  transform: scale(1.05);
}
.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.pricing-header .price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--text);
}
.pricing-header .price span {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 400;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.pricing-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.pricing-features i {
  color: var(--income);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: background 0.3s ease;
}
.faq-item:hover {
  background: var(--card);
}
.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}
.faq-item p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Footer */
.landing-footer {
  padding: 80px 20px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-cta {
  max-width: 600px;
  margin: 0 auto 80px;
}
.footer-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.footer-bottom {
  color: var(--muted);
  font-size: 0.9rem;
}
