* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fff;
  color: #1a1a1a;
}

/* ── Full-viewport layout ── */
.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Toast ── */
.toast {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 12px 18px;
  width: calc(100% - 40px);
  max-width: 560px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 100;
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #003087;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-icon svg { width: 20px; height: 20px; fill: #fff; }
.toast-text strong { color: #003087; }
.toast-meta { color: #999; font-size: 12px; margin-top: 2px; }

/* ── Logo ── */
.sams-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sams-logo .s-mark { width: 40px; height: 40px; }
.sams-logo .brand {
  font-size: 28px;
  font-weight: 700;
  color: #003087;
  letter-spacing: -0.5px;
}

/* ── Hero ── */
.hero { text-align: center; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-title {
  font-size: clamp(34px, 8vw, 52px);
  font-weight: 800;
  line-height: 1.1;
}

/* ── Steps ── */
.steps-section { width: 100%; }
.steps-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.steps-list {
  background: #f5f7fa;
  border-radius: 14px;
  overflow: hidden;
}
.step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #e4e8ee;
  font-size: 15px;
  font-weight: 700;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── CTA ── */
.cta-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: #003087;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  text-align: center;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s;
}
.cta-btn:hover { background: #002570; }

/* ── FAQ ── */
.faq { text-align: center; }
.faq-title {
  font-size: 15px;
  font-weight: 700;
  color: #0067A0;
  margin-bottom: 8px;
}
.faq-body {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
