.how-it-works {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 60px);
  background: #dbc1c7;
  color: #111;
}

.how-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.how-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-family: "Playfair Display", serif;
}

.how-header p {
  margin-top: 10px;
  color: #666;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: #FAEBD7;
  padding: 34px 26px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  transition: 0.35s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.step-card span {
  font-weight: 800;
  font-size: 24px;
  color: #999;
}

.step-card h3 {
  margin: 14px 0 10px;
  font-size: 20px;
}

.step-card p {
  color: #666;
  line-height: 1.5;
}

/* REMOVE MOBILE TAP HIGHLIGHT */

*{
    -webkit-tap-highlight-color: transparent;
}

button,
a,
input,
textarea,
select{
    outline:none;
    -webkit-tap-highlight-color: transparent;
}

html{
    -webkit-touch-callout:none;
}