:root {
  --rose: #e11d48;
  --ink: #0f172a;
  --muted: #64748b;
  --bg1: #fff;
  --bg2: #fff7f9;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  background: linear-gradient(180deg, #fff7f9, #ffffff);
  color: var(--ink);
}

/* HEADER */
.nav {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--rose);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.links a {
  color: #334155;
  text-decoration: none;
  margin-left: 18px;
}

.links a:hover {
  color: var(--rose);
}

/* INTRO */
.intro {
  text-align: center;
  margin: 60px auto 40px;
  max-width: 700px;
  padding: 0 20px;
}

.intro h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}

.intro p {
  font-size: 18px;
  color: var(--muted);
}

/* STEPS */
.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
}

.step-num {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.step h2 {
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 20px;
}

.step p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid #eee;
}
