.hero-simple {
  min-height: 50vh;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.hero-simple::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-landing__inner--centered {
  text-align: center;
  justify-content: center;
}

.breadcrumb-nav {
  margin-bottom: 24px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  font-size: 14px;
  color: #94a3b8;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: #64748b;
}

.breadcrumb a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #818cf8;
}

.hero-landing__desc--wide {
  max-width: 700px;
  margin: 0 auto;
}

.directory-section {
  background: #f8fafc;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.directory-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.directory-card__header {
  padding: 24px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  position: relative;
}

.directory-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directory-card__badge--premium {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
}

.directory-card__badge--popular {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
}

.directory-card__badge--new {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
}

.directory-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.directory-card__icon i {
  font-size: 24px;
  color: #ffffff;
}

.directory-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.directory-card__body {
  padding: 24px;
  flex: 1;
}

.directory-card__description {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 16px;
}

.directory-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.directory-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  padding: 6px 0;
}

.directory-card__features li i {
  color: #10b981;
  font-size: 14px;
}

.directory-card__footer {
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.directory-card__category {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directory-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #6366f1;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.directory-card__link:hover {
  gap: 10px;
  color: #4f46e5;
}

.cta-box--primary {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.cta-box--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(99, 102, 241, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(168, 85, 247, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.cta-box__title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
}

.cta-box__desc {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 32px;
  position: relative;
}

.cta-box__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn--primary {
  background: #6366f1;
  color: #ffffff;
  border: none;
}

.btn--primary:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #64748b;
}

.btn--outline:hover {
  border-color: #818cf8;
  color: #818cf8;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .directory-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-box__title {
    font-size: 24px;
  }

  .cta-box__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }
}
