/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ── Screen wrapper ─────────────────────────────────────────── */
.screen {
  background-color: #f0f4f8;
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 4.85vw; /* ~62px on 1280 */
}

/* ── Page title ─────────────────────────────────────────────── */
.page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.19vw, 28px);
  color: #2d3748;
  white-space: nowrap;
  margin-top: clamp(14px, 3vh, 26px);
  margin-bottom: clamp(8px, 1vh, 12px);
}

/* ── Image cards row ────────────────────────────────────────── */
.cards-row {
  display: flex;
  gap: clamp(12px, 2.19vw, 28px);
  width: 100%;
}

.card {
  flex: 1;
  background-color: #dbe1e7;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  max-height: 32vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Content area (steps + sidebar) ────────────────────────── */
.content-area {
  display: flex;
  flex: 1;
  gap: 1.5vw;
  margin-top: clamp(6px, 1vh, 10px);
  overflow: hidden;
}

/* ── Steps list ─────────────────────────────────────────────── */
.steps-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(10px, 2vh, 20px);
  flex: 1;
  min-width: 0;
  padding-top: clamp(6px, 1vh, 10px);
  padding-bottom: clamp(6px, 1vh, 10px);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1.72vw, 22px);
}

.step-bullet {
  flex-shrink: 0;
  width: clamp(20px, 1.95vw, 25px);
  height: clamp(20px, 1.95vw, 25px);
  background-color: #6bb3b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.step-bullet span {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1.05vw, 14px);
  color: #ffffff;
  line-height: 1;
}

.step-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.1vw, 15px);
  color: #2d3748;
  line-height: 1.55;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: clamp(12px, 1.8vh, 20px);
  flex-shrink: 0;
  width: clamp(240px, 25.7vw, 329px);
  padding-top: clamp(6px, 1vh, 10px);
  padding-bottom: clamp(8px, 2vh, 20px);
}

/* Tips box */
.tips-box {
  background-color: #c4a27f;
  border-radius: clamp(20px, 2.73vw, 35px);
  padding: clamp(14px, 1.5vw, 20px) clamp(14px, 1.72vw, 22px);
  width: 100%;
}

.tips-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.1vw, 15px);
  color: #2d3748;
  margin-bottom: 8px;
}

.tips-list {
  list-style: disc;
  padding-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tips-list li {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 0.95vw, 13px);
  color: #2d3748;
  line-height: 1.5;
}

/* Next button */
.next-btn {
  background-color: #6bb3b8;
  border: none;
  border-radius: clamp(28px, 2.77vw, 35.5px);
  width: clamp(200px, 21.6vw, 277px);
  height: clamp(52px, 7.27vh, 66px);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.13vw, 40px);
  color: #f0f4f8;
  letter-spacing: 0.12em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  align-self: flex-end;
}

.next-btn:hover {
  opacity: 0.88;
}
