body {
  background-color: #0e0b1e;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.bg-hero-gradient {
  background: radial-gradient(
      circle at 20% 20%,
      rgba(93, 95, 239, 0.2),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(32, 227, 178, 0.28),
      transparent 55%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(255, 200, 87, 0.25),
      transparent 65%
    );
}

.glass-card {
  background: linear-gradient(
      140deg,
      rgba(16, 15, 37, 0.92),
      rgba(32, 21, 54, 0.78)
    )
    border-box;
  position: relative;
  isolation: isolate;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(93, 95, 239, 0.3),
    rgba(32, 227, 178, 0.2),
    rgba(255, 200, 87, 0.2)
  );
  opacity: 0.35;
  z-index: -1;
}

.service-card,
.coverage-item,
.method-step,
.capsule-card,
.faq-item {
  background: rgba(15, 13, 36, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover,
.coverage-item:hover,
.method-step:hover,
.capsule-card:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 227, 178, 0.6);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.coverage-item dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.coverage-item dd {
  font-size: 0.95rem;
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.6;
}

.method-step .step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  background: rgba(93, 95, 239, 0.18);
  color: #20e3b2;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  color: rgba(203, 213, 225, 0.85);
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(32, 227, 178, 0.6);
}

.faq-item.active .faq-answer {
  display: block;
}

.testimonial {
  font-style: italic;
  color: rgba(226, 232, 240, 0.95);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(14, 11, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(32, 227, 178, 0.8);
  box-shadow: 0 0 0 4px rgba(32, 227, 178, 0.18);
}

.animate-spin-slow {
  animation: spin 2.2s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .glass-card {
    padding: 1.75rem !important;
  }

  .service-card,
  .coverage-item,
  .method-step,
  .capsule-card,
  .faq-item {
    border-radius: 1rem;
  }
}

