﻿.steps-container {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.step-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border-color-soft);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.56);
  transition: all 0.2s ease;
}

.step-content {
  min-height: 50px;
  display: flex;
  align-items: center;
}

.step-content p {
  margin: 0;
}

.step-card:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #00d8ff, #3567ff);
}

.step-content h3 {
  color: var(--neon-blue);
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.5;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.fee-card {
  border: 1px solid var(--border-color-soft);
  border-radius: 12px;
  padding: 14px;
  background: rgba(2, 6, 23, 0.56);
}

.fee-card h3 {
  color: var(--neon-blue);
  margin-bottom: 8px;
}

.fee-card p {
  color: var(--text-secondary);
  line-height: 1.5;
}

.fees-note {
  margin-top: 12px;
  padding: 12px;
  border-left: 3px solid var(--neon-yellow);
  border-radius: 10px;
  background: rgba(255, 215, 0, 0.08);
  color: #f5df9a;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border-color-soft);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(2, 6, 23, 0.56);
}

.faq-question {
  padding: 12px 14px;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 600;
}

.faq-answer {
  padding: 0 14px 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}

.contact-card {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border-color-soft);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(2, 6, 23, 0.56);
  color: var(--text-primary);
}

.contact-card:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(53, 103, 255, 0.2));
  border: 1px solid rgba(0, 240, 255, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.contact-label {
  color: var(--text-secondary);
  font-size: 12px;
}

.contact-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 700px) {
  .step-card {
    grid-template-columns: 1fr;
  }

  .step-number {
    margin: 0 auto;
  }
}
