* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #f1f5f9;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  min-height: 100vh;
}

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

header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  transition: background 0.3s ease-in;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #a855f7;
  text-decoration: none;
  transition: color 0.3s ease-in;
}

.logo:hover {
  color: #c084fc;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 500;
  transition: color 0.3s ease-in;
}

.nav-links a:hover {
  color: #a855f7;
}

.cta-button {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease-in;
  cursor: pointer;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.cta-button.coming-soon {
  background: linear-gradient(135deg, #475569, #64748b);
  cursor: default;
  min-width: auto;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.cta-button.coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.cta-button.primary {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  cursor: pointer;
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.hero {
  padding: 120px 0 80px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: #cbd5e1;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  align-items: center;
}

.secondary-button {
  background: rgba(241, 245, 249, 0.1);
  color: white;
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(241, 245, 249, 0.2);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in;
  display: inline-block;
  min-width: 160px;
  text-align: center;
  font-size: 0.9rem;
}

.secondary-button:hover {
  background: rgba(241, 245, 249, 0.2);
  border-color: rgba(241, 245, 249, 0.3);
  transform: translateY(-1px);
}

.coming-soon-badge {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.features {
  background: #111827;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.features-grid .feature-card:nth-child(1) {
  grid-column: 1 / 3;
}

.features-grid .feature-card:nth-child(2) {
  grid-column: 3 / 5;
}

.features-grid .feature-card:nth-child(3) {
  grid-column: 5 / 7;
}

.features-grid .feature-card:nth-child(4) {
  grid-column: 2 / 4;
}

.features-grid .feature-card:nth-child(5) {
  grid-column: 4 / 6;
}

.feature-card {
  background: #374151;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #4b5563;
  transition: all 0.3s ease-in;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.1);
}

.feature-card:hover {
  border-color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(124, 58, 237, 0.3);
}

.feature-icon {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease-in;
}

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

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f8fafc;
  transition: color 0.3s ease-in;
}

.feature-card:hover h3 {
  color: #c084fc;
}

.feature-card p {
  color: #cbd5e1;
  line-height: 1.6;
}

.how-it-works {
  background: #0f172a;
  padding: 80px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: #374151;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #4b5563;
  text-align: center;
  transition: all 0.3s ease-in;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.1);
}

.step:hover {
  border-color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(124, 58, 237, 0.3);
}

.step-number {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  transition: all 0.3s ease-in;
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f8fafc;
  transition: color 0.3s ease-in;
}

.step:hover h3 {
  color: #c084fc;
}

.step p {
  color: #cbd5e1;
  line-height: 1.6;
}

.contact {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 58, 237, 0.5),
    transparent
  );
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #374151;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border: 1px solid #4b5563;
  transition: all 0.3s ease-in;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.1);
}

.contact-item:hover {
  border-color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(124, 58, 237, 0.3);
}

.contact-item i {
  color: #a855f7;
  font-size: 1.2rem;
}

.contact-item a {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease-in;
}

.contact-item a:hover {
  color: #c084fc;
}

.final-cta {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #cbd5e1;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.final-cta .cta-button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.pricing {
  background: #1f2937;
  padding: 80px 0;
  text-align: center;
}

.pricing-card {
  background: #374151;
  border: 1px solid #4b5563;
  border-radius: 12px;
  padding: 3rem 2rem;
  max-width: 400px;
  margin: 0 auto;
  transition: all 0.3s ease-in;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.1);
}

.pricing-card:hover {
  border-color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(124, 58, 237, 0.3);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.pricing-card p {
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .features-grid .feature-card:nth-child(1) {
    grid-column: 1 / 3;
  }

  .features-grid .feature-card:nth-child(2) {
    grid-column: 3 / 5;
  }

  .features-grid .feature-card:nth-child(3) {
    grid-column: 1 / 3;
  }

  .features-grid .feature-card:nth-child(4) {
    grid-column: 3 / 5;
  }

  .features-grid .feature-card:nth-child(5) {
    grid-column: 2 / 4;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .hero p {
    font-size: 1.1rem;
    max-width: 90%;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .cta-button,
  .secondary-button {
    min-width: 200px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid .feature-card:nth-child(1),
  .features-grid .feature-card:nth-child(2),
  .features-grid .feature-card:nth-child(3),
  .features-grid .feature-card:nth-child(4),
  .features-grid .feature-card:nth-child(5) {
    grid-column: 1 / -1;
  }

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

  .final-cta p {
    max-width: 90%;
  }
}

.fade-in-up {
}

footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid #374151;
}

footer .footer-content {
  max-width: 600px;
  margin: 0 auto;
}

footer p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

footer .tagline {
  color: #a855f7;
  font-weight: 600;
  font-style: italic;
  margin: 1.5rem 0;
  transition: color 0.3s ease-in;
}

footer .disclaimer {
  font-size: 0.8rem;
  opacity: 0.8;
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
