/* Landing Page Specific Styles */
:root {
  --primary-color: #5850ec;
  --primary-dark: #4338ca;
  --secondary-color: #0ea5e9;
  --accent-color: #0caa80;
  --text-color: #1f2937;
  --light-bg: #f9fafb;
  --white: #ffffff;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --border-radius: 0.75rem;
  --box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.hero-section {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #534bae 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 20% 70%, rgba(84, 75, 174, 0.8) 0%, rgba(26, 35, 126, 0.4) 70%);
  z-index: 0;
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
  background-color: var(--primary-color);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.pain-point-card {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.pain-point-card .comparison {
  display: flex;
  flex-grow: 1;
}

.pain-point-card .vs {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  font-weight: bold;
  color: var(--gray-600);
}

.pain-point-card .old-way,
.pain-point-card .new-way {
  padding: 1rem;
  flex: 1;
}

.pain-point-card .old-way {
  background-color: var(--gray-200);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  position: relative;
}

.pain-point-card .new-way {
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.step-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  z-index: 1;
}

.step-card .step-number {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 2;
}

.steps-container {
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: calc(50% - 1px);
  width: 2px;
  height: calc(100% - 6rem);
  background-color: var(--gray-300);
  z-index: 0;
}

.module-tab {
  cursor: pointer;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  background-color: var(--gray-200);
  border: 1px solid var(--gray-300);
  border-bottom: none;
}

.module-tab.active {
  background-color: var(--white);
  border-bottom: 2px solid var(--white);
  margin-bottom: -2px;
  color: var(--primary-color);
  font-weight: 600;
}

.module-content {
  display: none;
  padding: 2rem;
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 0 var(--border-radius) var(--border-radius) var(--border-radius);
}

.module-content.active {
  display: block;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  transition: transform 0.3s ease;
  border: 1px solid var(--gray-200);
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card.popular {
  border-top: 4px solid var(--primary-color);
  position: relative;
}

/* Badge is now handled directly in HTML
.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}
*/

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 0 1rem 0;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Floating Elements */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 50;
  display: none;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 40;
}

.back-to-top.visible {
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover::after {
  height: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 14px rgba(88, 80, 236, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 80, 236, 0.6);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
}

/* Testimonials */
.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin: 1.5rem 0;
}

.testimonial-card .quote {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .steps-container::before {
    left: 1.5rem;
  }
  
  .step-card {
    margin-left: 2rem;
  }

  .step-card .step-number {
    left: -2.5rem;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

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

.slide-up {
  animation: slideUp 0.6s ease-out;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
