/* [project]/src/app/home.css [app-client] (css) */
.home-page {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

.home-page ~ .theme-toggle, .home-page ~ #themeToggle {
  display: none !important;
}

.home-navbar {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 1000;
  background: #fffffff2;
  border-bottom: 1px solid #667eea1a;
  padding: 16px 40px;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px #0000000d;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}

.navbar-brand {
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform .2s;
  display: flex;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 800;
}

.navbar-links {
  align-items: center;
  gap: 32px;
  display: flex;
}

.navbar-link {
  color: #475569;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.navbar-link:hover {
  color: #667eea;
}

.navbar-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  align-items: center;
  padding: 10px 24px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  box-shadow: 0 4px 12px #667eea4d;
  color: #fff !important;
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #667eea66;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 40px 120px;
  position: relative;
  overflow: hidden;
}

.hero-section:before {
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle at 20%, #ffffff1a 0%, #0000 50%), radial-gradient(circle at 80% 80%, #ffffff14 0%, #0000 50%);
  width: 150%;
  height: 150%;
  position: absolute;
}

.hero-container {
  text-align: center;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero-title {
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 24px;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle {
  color: #ffffffe6;
  max-width: 700px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
  line-height: 1.6;
}

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

.home-btn-primary {
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  transition: all .3s;
  display: inline-flex;
  box-shadow: 0 4px 15px #0003;
  color: #667eea !important;
  background: #fff !important;
  text-decoration: none !important;
}

.home-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #0000004d;
  color: #667eea !important;
  background: #fff !important;
}

.home-btn-secondary {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid #ffffff4d;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  transition: all .3s;
  display: inline-flex;
  color: #fff !important;
  background: #ffffff1a !important;
  text-decoration: none !important;
}

.home-btn-secondary:hover {
  border-color: #ffffff80;
  transform: translateY(-2px);
  color: #fff !important;
  background: #fff3 !important;
}

.stats-section {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 60px 40px;
}

.stats-container {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

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

.stat-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
  font-size: 3rem;
  font-weight: 800;
}

.stat-label {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
}

.how-it-works-section {
  background: #f8fafc;
  padding: 100px 40px;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
  display: grid;
}

.step-card {
  text-align: center;
  background: #fff;
  border: 2px solid #0000;
  border-radius: 16px;
  padding: 40px 32px;
  transition: all .3s;
  position: relative;
  box-shadow: 0 4px 6px #0000000d;
}

.step-card:hover {
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px #667eea26;
}

.step-number {
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
}

.step-icon {
  margin-bottom: 24px;
}

.step-icon svg {
  color: #667eea;
}

.step-title {
  color: #1e293b;
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-description {
  color: #64748b;
  line-height: 1.6;
}

.home-features-section {
  background: #fff;
  padding: 100px 40px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  color: #1e293b;
  margin-bottom: 16px;
  font-size: 2.5rem;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  display: grid;
}

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: all .3s;
  box-shadow: 0 4px 6px #0000000d;
}

.feature-card:hover {
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px #667eea26;
}

.feature-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
}

.feature-title {
  color: #1e293b;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-description {
  color: #64748b;
  font-size: .95rem;
  line-height: 1.6;
}

.use-cases-section {
  background: #f8fafc;
  padding: 100px 40px;
}

.use-cases-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  display: grid;
}

.use-case-card {
  text-align: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: all .3s;
  box-shadow: 0 4px 6px #0000000d;
}

.use-case-card:hover {
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px #667eea26;
}

.use-case-icon {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.use-case-title {
  color: #1e293b;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.use-case-description {
  color: #64748b;
  font-size: .95rem;
  line-height: 1.6;
}

.pricing-section {
  background: #fff;
  padding: 100px 40px;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 32px;
  transition: all .3s;
  position: relative;
  box-shadow: 0 4px 6px #0000000d;
}

.pricing-card:hover {
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px #667eea26;
}

.pricing-card-featured {
  background: linear-gradient(135deg, #667eea0d 0%, #764ba20d 100%);
  border-color: #667eea;
}

.pricing-badge {
  color: #475569;
  background: #f1f5f9;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 6px 16px;
  font-size: .85rem;
  font-weight: 600;
  display: inline-block;
}

.pricing-badge-featured {
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-price {
  margin-bottom: 30px;
}

.price-currency {
  color: #64748b;
  font-size: 1.5rem;
  font-weight: 600;
}

.price-amount {
  color: #1e293b;
  font-size: 4rem;
  font-weight: 800;
}

.price-period {
  color: #64748b;
  font-size: 1rem;
}

.pricing-features {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 0;
}

.pricing-cta {
  text-align: center;
  background: #fff;
  border: 2px solid #667eea;
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 700;
  transition: all .3s;
  display: block;
  color: #667eea !important;
  text-decoration: none !important;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  color: #fff !important;
  background: #667eea !important;
}

.pricing-cta-featured {
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.pricing-cta-featured:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #5568d3 0%, #6a3d8f 100%) !important;
}

.integrations-section {
  background: #f8fafc;
  padding: 100px 40px;
}

.integrations-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
}

.integration-card {
  text-align: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all .3s;
  box-shadow: 0 4px 6px #0000000d;
}

.integration-card:hover {
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px #667eea26;
}

.integration-logo {
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.integration-logo img {
  object-fit: contain;
  width: 56px;
  height: 56px;
}

.integration-name {
  color: #475569;
  font-weight: 600;
}

.security-section {
  background: #fff;
  padding: 100px 40px;
}

.security-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
}

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

.security-feature svg {
  margin-bottom: 20px;
}

.security-feature h4 {
  color: #1e293b;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.security-feature p {
  color: #64748b;
  line-height: 1.6;
}

.testimonials-section {
  background: #f8fafc;
  padding: 100px 40px;
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  display: grid;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: all .3s;
  box-shadow: 0 4px 6px #0000000d;
}

.testimonial-card:hover {
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px #667eea26;
}

.testimonial-rating {
  color: #f59e0b;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.testimonial-text {
  color: #64748b;
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.6;
}

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

.author-avatar {
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-weight: 700;
  display: flex;
}

.author-name {
  color: #1e293b;
  font-weight: 700;
}

.author-role {
  color: #94a3b8;
  font-size: .85rem;
}

.faq-section {
  background: #fff;
  padding: 100px 40px;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  display: grid;
}

.faq-item {
  background: #f8fafc;
  border-left: 4px solid #667eea;
  border-radius: 12px;
  padding: 28px;
  transition: all .3s;
}

.faq-item:hover {
  background: #fff;
  box-shadow: 0 4px 12px #667eea1a;
}

.faq-question {
  color: #1e293b;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-answer {
  color: #64748b;
  line-height: 1.6;
}

.home-cta-section {
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.home-cta-section:before {
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle at 30%, #ffffff1a 0%, #0000 50%);
  width: 150%;
  height: 150%;
  position: absolute;
}

.cta-container {
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.cta-title {
  color: #fff;
  margin-bottom: 24px;
  font-size: 2.5rem;
  font-weight: 800;
}

.cta-description {
  color: #ffffffe6;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.home-footer {
  color: #fff;
  background: #1e293b;
  padding: 60px 40px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  display: grid;
}

.footer-brand {
  max-width: 300px;
}

.footer-description {
  color: #94a3b8;
  font-size: .9rem;
  line-height: 1.6;
}

.footer-column h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: 700;
}

.footer-links {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.footer-link {
  color: #94a3b8;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: #667eea;
}

.footer-bottom {
  text-align: center;
  color: #94a3b8;
  border-top: 1px solid #ffffff1a;
  padding-top: 30px;
  font-size: .85rem;
}

@media (max-width: 768px) {
  .navbar-links {
    gap: 16px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .price-amount {
    font-size: 3rem;
  }
}

/*# sourceMappingURL=src_app_home_222a1f5e.css.map*/