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

.glass-morphism {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-node { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

.review-card {
  padding: 30px;
  border-radius: 24px;
  background: white;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid #f1f5f9;
  background: white;
}

.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.faq-active .faq-answer { display: block; }
.faq-active svg { transform: rotate(180deg); }

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.animate-slide-in { animation: slideIn 0.5s ease-out forwards; }