/* Hero background glow */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(239, 68, 68, 0.15) 0%, transparent 70%),
    radial-gradient(40% 40% at 80% 20%, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
}

/* Feature cards */
.feature-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.75rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}
.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Pricing cards */
.price-card {
  position: relative;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
}
.price-card-featured {
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(251, 191, 36, 0.05);
}
.price-card .badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #fbbf24, #ef4444);
  color: #0f172a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}

/* FAQ */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::before {
  content: "+";
  display: inline-block;
  width: 1.25rem;
  color: #fbbf24;
  font-weight: 700;
}
.faq-item[open] summary::before {
  content: "\2212";
}
.faq-item p {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(4px);
  padding: 1rem;
}
.modal-overlay[hidden] {
  display: none;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 26rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f172a;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modal-in 0.15s ease-out;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  color: #94a3b8;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.modal-input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
  color: #f1f5f9;
}
.modal-input:focus {
  outline: none;
  border-color: #fbbf24;
  background: rgba(255, 255, 255, 0.06);
}
.modal-input::placeholder {
  color: #64748b;
}
