/* ==================================== Modern Landing Page Styles ==================================== */

.landing-page-modern {
  width: 100%;
  overflow-x: hidden;
}

/* Hero Section */
.landing-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.landing-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(1.1); }
}

.landing-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.landing-hero-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.landing-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.landing-hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.landing-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-landing-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: white;
  color: #6366f1;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
}

.btn-landing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  color: #6366f1;
  text-decoration: none;
}

.btn-landing-primary i {
  transition: transform 0.3s ease;
}

.btn-landing-primary:hover i {
  transform: translateX(4px);
}

.btn-landing-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-landing-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.landing-hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-feature-item i {
  color: #4ade80;
  font-size: 1.1rem;
}

/* Hero Decoration */
.landing-hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.decoration-circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.decoration-circle-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.decoration-circle-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

/* Features Section */
.landing-features {
  padding: 6rem 0;
  background: white;
}

.landing-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.landing-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.landing-section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
}

.landing-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-feature-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.landing-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #6366f1;
}

.landing-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.landing-feature-card:nth-child(2) .landing-feature-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.landing-feature-card:nth-child(3) .landing-feature-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.landing-feature-card:nth-child(4) .landing-feature-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.landing-feature-card:nth-child(5) .landing-feature-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.landing-feature-card:nth-child(6) .landing-feature-icon {
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
}

.landing-feature-card:hover .landing-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.landing-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.landing-feature-text {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.landing-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
  position: relative;
  overflow: hidden;
}

.landing-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.landing-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.landing-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.landing-cta-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
}

.landing-cta-actions {
  display: flex;
  justify-content: center;
}

.btn-landing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

.btn-landing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
  color: white;
  text-decoration: none;
}

.btn-landing-cta i {
  transition: transform 0.3s ease;
}

.btn-landing-cta:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .landing-hero {
    min-height: 80vh;
    padding: 2rem 0;
  }

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

  .landing-hero-description {
    font-size: 1.1rem;
  }

  .landing-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-landing-primary,
  .btn-landing-secondary {
    width: 100%;
    justify-content: center;
  }

  .landing-hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .landing-features {
    padding: 4rem 0;
  }

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

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

  .landing-cta {
    padding: 4rem 0;
  }

  .landing-cta-title {
    font-size: 2rem;
  }

  .decoration-circle-1 {
    width: 200px;
    height: 200px;
  }

  .decoration-circle-2 {
    width: 150px;
    height: 150px;
  }

  .decoration-circle-3 {
    width: 100px;
    height: 100px;
  }
}



