/* ============================================
   How It Works / Steps Section
   ============================================ */

.how-it-works {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--bg-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  color: var(--accent-gold);
  background: var(--accent-gold-bg);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  margin-bottom: 24px;
  letter-spacing: .05em;
  font-family: var(--font-body);
}

.step-phone {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.step-phone-frame {
  width: 200px;
  height: 400px;
  background: var(--bg-card);
  border-radius: 32px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.step-card:hover .step-phone-frame {
  border-color: var(--accent-gold-border);
  box-shadow: var(--shadow-xl), 0 0 0 4px var(--accent-gold-bg);
  transform: translateY(-8px);
}

.step-phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, #fef3c7 0, #fef3c7 35%, #fde68a 35%, #fde68a 100%);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.step-desc {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.68;
  max-width: 300px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 72px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .step-phone-frame {
    width: 180px;
    height: 360px;
  }
}
