.tour {
  padding: var(--sp-9) var(--sp-5);
  max-width: var(--container);
  margin: 0 auto;
}

.tour-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.tour-header h2 {
  font-size: var(--fs-h2);
  margin-top: var(--sp-3);
  letter-spacing: -0.02em;
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
}

.tour-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: var(--sp-7);
}

.tour-step-num {
  width: 96px;
  height: 96px;
  border-radius: var(--r-card);
  background: linear-gradient(135deg, var(--primary) 0%, var(--cat-games) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: var(--fw-black);
  color: var(--text-white);
  position: relative;
  box-shadow: 0 10px 30px var(--primary-glow);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}

.tour-step-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--r-card);
  background: linear-gradient(135deg, var(--primary) 0%, var(--cat-games) 100%);
  opacity: 0.3;
  filter: blur(12px);
  z-index: -1;
}

.tour-step-icon {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 32px;
  height: 32px;
  background: var(--surface-solid);
  border: 2px solid var(--primary);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.tour-step-icon svg { width: 16px; height: 16px; }

.tour-step-body h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.tour-step-body p {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 56ch;
}

.tour-step-download {
  grid-template-columns: 120px minmax(240px, 1fr) auto;
}
.tour-step-store-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--sp-3);
}
.tour-step-store-links .hero-store-btn { padding: 11px 16px; }

@media (max-width: 1100px) {
  .tour-step-download { grid-template-columns: 120px 1fr; }
  .tour-step-store-links { grid-column: 2; justify-content: flex-start; margin-top: calc(var(--sp-4) * -1); }
}

@media (max-width: 640px) {
  .tour-step-store-links { grid-column: auto; width: 100%; justify-content: center; margin-top: 0; }
  .tour-step-store-links .hero-store-btn { width: 100%; justify-content: center; }
}
