/* =====================================================
   SpecDream Technologies — Custom Enhancement Styles
   ===================================================== */

/* ---- Design Tokens ---- */

/* =====================================================
   WEBSITE MIGRATION SECTION
   ===================================================== */
.migration-section {
  background: #f8faff;
}

.migration-cards-row {
  margin-top: 20px;
  margin-bottom: 60px;
}

.migration-card {
  background: #ffffff;
  border: 1px solid #e8edf8;
  border-radius: 20px;
  padding: 40px 32px 36px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(79,70,229,.05);
}

.migration-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(79,70,229,.12);
  border-color: rgba(79,70,229,.2);
}

.migration-card--featured {
  background: linear-gradient(160deg, #4f46e5 0%, #7c3aed 100%);
  border-color: transparent;
  color: #fff;
}

.migration-card--featured:hover {
  box-shadow: 0 16px 48px rgba(79,70,229,.35);
}

.migration-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.migration-card-icon {
  margin-bottom: 22px;
  line-height: 1;
}

.migration-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 14px;
}

.migration-card--featured .migration-card-title {
  color: #fff;
}

.migration-card p {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.migration-card--featured p {
  color: rgba(255,255,255,.82);
}

.migration-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.migration-feature-list li {
  font-size: 0.88rem;
  color: #374151;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.migration-card--featured .migration-feature-list li {
  color: rgba(255,255,255,.9);
}

.migration-feature-list li .fa-check-circle {
  color: #4f46e5;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.migration-card--featured .migration-feature-list li .fa-check-circle {
  color: #a5f3fc;
}

/* Process steps */
.migration-process-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 40px;
}

.migration-process-row {
  background: #fff;
  border-radius: 20px;
  padding: 48px 24px 36px;
  border: 1px solid #e8edf8;
  box-shadow: 0 4px 24px rgba(79,70,229,.05);
}

.migration-step {
  text-align: center;
  padding: 10px 20px;
  position: relative;
}

.migration-step::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20px;
  width: 1px;
  height: 60px;
  background: #e8edf8;
}

.migration-step:last-child::after { display: none; }

.migration-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.migration-step h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 10px;
}

.migration-step p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767px) {
  .migration-step::after { display: none; }
  .migration-step { margin-bottom: 32px; }
  .migration-process-row { padding: 36px 16px 24px; }
}
