/* Landing Page Styles */

/* Override page-container for scrollable LP */
.lp-body .page-container {
  align-items: flex-start;
  overflow: visible;
}

/* Fixed background override for LP */
.lp-body .page-container > div:first-child {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* LP wrapper */
.lp-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.lp-hero {
  padding: 80px 0 60px;
  text-align: center;
}

.lp-hero-logo {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -3px;
  margin-bottom: 8px;
  color: #0D9488;
}

.lp-hero-tagline {
  font-size: 22px;
  color: #6B7280;
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.lp-hero-tagline strong {
  color: #0D9488;
  font-weight: 900;
  font-size: 28px;
}

.lp-hero-sub {
  font-size: 16px;
  color: #9CA3AF;
  margin-bottom: 40px;
}

.lp-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA Buttons */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #0D9488;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
  text-decoration: none;
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  background: #0F766E;
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.4);
}

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: #1F2937;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lp-btn-secondary:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
  transform: translateY(-2px);
}

/* Section common */
.lp-section {
  padding: 80px 0;
}

.lp-section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: #1F2937;
}

.lp-section-subtitle {
  font-size: 16px;
  color: #6B7280;
  text-align: center;
  margin-bottom: 60px;
}

/* Features Grid */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.lp-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.lp-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1F2937;
}

.lp-feature-card p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
  line-height: 1.6;
}

/* Steps Section */
.lp-steps {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.lp-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.lp-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0D9488;
  color: white;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
}

.lp-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 8px;
}

.lp-step p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
  line-height: 1.6;
}

.lp-step-connector {
  display: flex;
  align-items: center;
  padding-top: 20px;
  color: #D1D5DB;
}

/* Final CTA Section */
.lp-final-cta {
  text-align: center;
  padding: 80px 0;
}

.lp-final-cta-box {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  padding: 60px 40px;
}

.lp-final-cta h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1F2937;
  margin: 0 0 16px;
}

.lp-final-cta p {
  font-size: 16px;
  color: #6B7280;
  margin: 0 0 32px;
}

/* Footer */
.lp-footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #E5E7EB;
}

.lp-footer p {
  font-size: 14px;
  color: #9CA3AF;
  margin: 0;
}

/* Scroll Animations */
.lp-animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lp-animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lp-hero {
    padding: 40px 0 40px;
  }

  .lp-hero-logo {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .lp-hero-tagline {
    font-size: 18px;
  }

  .lp-hero-tagline strong {
    font-size: 22px;
  }

  .lp-section {
    padding: 60px 0;
  }

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

  .lp-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .lp-step-connector {
    display: none;
  }

  .lp-btn-primary,
  .lp-btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
  }

  .lp-final-cta-box {
    padding: 40px 24px;
  }

  .lp-final-cta h2 {
    font-size: 24px;
  }
}
