/* ===== HAYABUSA Lite : inquiry.html 専用スタイル ===== */

body {
  font-family: 'Noto Sans JP', 'Arial', sans-serif;
}

/* ヒーロー背景グラデーション */
.hero-gradient {
  background: linear-gradient(135deg, #F8FBFC 0%, #E5F9F6 100%);
}

/* 送信中スピナー */
.spinner {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ステップ番号バッジ */
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin: 0 auto 16px;
}
.step-1 { background: linear-gradient(135deg, #FFE45C 0%, #FFD700 100%); }
.step-2 { background: linear-gradient(135deg, #A8E6F0 0%, #3DDCC8 100%); }
.step-3 { background: linear-gradient(135deg, #FF4D8F 0%, #E63B7D 100%); }
