/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "石井ゴシック M", "Ishii Gothic M", YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #1f1f1f;
  background: #fafafa;
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; }
input, select, textarea { font-family: inherit; }

:root {
  --line: #888;
  --line-soft: #ccc;
  --line-faint: #e5e5e5;
  --text: #1f1f1f;
  --text-sub: #555;
  --text-mute: #888;
  --bg: #fff;
  --bg-soft: #f5f5f5;
  --placeholder: #f0f0f0;
  --primary: #2a2a2a;
  --primary-hover: #444;
  --success: #6b9a6b;
  --success-bg: #f0f6f0;
  --warn: #c98d3a;
}

@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .sp-none {
    display: none;
  }
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ===== Header ===== */
.header {
  position: relative;
  padding: 12px 0;
  background-color: #fff;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Page intro ===== */
.page-intro {
  padding-block: 32px;
  background: linear-gradient(90deg, rgba(35, 121, 187, 1) 0%, rgba(7, 57, 96, 1) 100%);
  color: #fff;
  text-align: center;
}
.page-intro-ttl {
  margin-bottom: 16px;
  font-size: 32px;
}
.page-intro-time span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 32px;
  border: 1px solid;
  border-radius: 99px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .page-intro-ttl {
    font-size: 20px;
  }
}

/* ===== Step indicator ===== */
.step-indicator-wrap {
  background: rgba(247, 247, 244, 1);
  border-bottom: 1px solid rgba(204, 204, 204, 1);
  padding: 32px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.step-indicator {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.step-indicator-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  transition: opacity 0.2s;
}
.step-indicator-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: -25%;
  width: 50%;
  height: 1px;
  background: rgba(186, 186, 186, 1);
}
.step-indicator-item[role="button"] {
  cursor: pointer;
}
.step-indicator-item[role="button"]:hover .step-indicator-num { 
  border-color: var(--text);
}
.step-indicator-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 121, 187, 1);
  color: rgba(35, 121, 187, 1);
  border-radius: 50%;
  background: rgba(247, 247, 244, 1);
  transition: all .4s ease-out;
}
.step-indicator-num-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.step-indicator-label {
  font-size: 14px;
  letter-spacing: 0;
  color: #888888
}
.step-indicator-item.is-active .step-indicator-num {
  background: rgba(35, 121, 187, 1);
  color: #fff;
}
.step-indicator-item.is-active .step-indicator-label {
  color: var(--text);
  font-weight: 500;
}
.step-indicator-item.is-done .step-indicator-num {
  background: #73C553;
  border-color: #73C553;
  color: #fff;
}
.step-indicator-item.is-done .step-indicator-num::before {
  content: "✓";
  font-size: 24px;
}
.step-indicator-item.is-done .step-indicator-num-text { display: none; }
.step-indicator-progress {
  position: absolute; top: 17px;
  left: calc(24px + 50px); right: calc(24px + 50px);
  height: 2px; background: var(--line-faint); z-index: 0;
}
.step-indicator-progress::before {
  content: ""; position: absolute; top: 0; left: 0; height: 100%;
  background: var(--success);
  transition: width 0.35s ease;
  width: var(--progress, 0%);
}

@media screen and (max-width: 767px) {
  .step-indicator-wrap {
    padding: 18px 0 14px;
  }
  .step-indicator-num {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .step-indicator-label {
    font-size: 10px;
  }
  .step-indicator-progress {
    top: 14px;
    left: calc(24px + 40px);
    right: calc(24px + 40px);
  }
}

/* ===== Step panels ===== */
main {
  background: #fff;
}
.step-panel {
  padding: 48px 0 80px;
}
.step-panel[hidden] {
  display: none !important;
}
.step-head {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 960px;
}
.step-head-meta {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
}
.step-head-badge {
  padding: 4px 32px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(90deg, rgba(35, 121, 187, 1) 0%, rgba(7, 57, 96, 1) 100%);
  border: 1px solid rgba(33, 80, 116, 1);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.42px;
  font-size: 14px;
}
.step-head-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 32px;
  border-radius: 0 4px 4px 0;
  border: 1px solid rgba(33, 80, 116, 1);
  color: rgba(33, 80, 116, 1);
  font-size: 14px;
}
.step-head-ttl {
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2px;
}
.step-head-ttl::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: rgba(35, 121, 187, 1);
  margin-top: 16px;
  margin-bottom: 16px;
  margin-inline: auto;
}
.step-head-lead {
  font-size: 16px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.8;
}
@media (max-width: 720px) {
  .step-panel {
    padding: 24px 0 60px;
  }
  .step-head {
    margin-bottom: 20px;
  }
  .step-head-ttl {
    font-size: 24px;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
  .step-head-lead {
    font-size: 13px;
  }
}

/* ===== Q&A list (Step 1) ===== */
.qa-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.qa-item {
  background: #fff;
  border: 1.5px solid var(--line-soft);
  padding: 16px 20px;
}
.qa-q {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; font-weight: 500;
  margin: 0 0 6px;
  line-height: 1.55; color: var(--text);
}
.qa-num {
  flex-shrink: 0;
  font-family: monospace;
  color: var(--text-mute);
  font-size: 13.5px;
  padding-top: 1px;
}
.qa-a {
  margin: 0;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-sub);
}
.qa-a-mark {
  display: inline;
  background: linear-gradient(transparent 60%, #e7e7e7 60%);
  padding: 0 2px;
}
@media (max-width: 720px) {
  .qa-item { padding: 14px 16px; }
  .qa-q { font-size: 14px; }
  .qa-a { font-size: 13px; padding-left: 20px; }
}

/* ===== Rules list (Step 2) ===== */
.rules-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.rules-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  background: rgba(247, 247, 244, 1);
  font-size: 18px;
  font-weight: 700;
}
.rules-list li:nth-child(even) {
  background: rgba(237, 237, 233, 1);
}
.rule-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(35, 121, 187, 1);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
}
.rules-list li:nth-child(even) .rule-num {
  background: rgba(33, 80, 116, 1);
}
.rule-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
}
@media (max-width: 720px) {
  .rules-list li {
    padding: 16px;
  }
  .rule-text {
    font-size: 14px;
  }
}

/* ===== Video block ===== */
.step-video-block {
  margin: 32px 0;
  padding: 24px;
  background: rgba(237, 237, 233, 1);
}
.step-video-label {
  margin: 0 0 4px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}
.step-video-note {
  text-align: center;
  font-size: 12px;
  color: rgba(33, 80, 116, 1);
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: 0;
}
.step-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 912px;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.18s;
  background-color: #666;
}
.step-video-frame:hover { transform: translateY(-2px); }
.step-video-frame .wire-ph {
  width: 100%; height: 100%; min-height: 0;
  font-size: 12px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.step-video-frame::after {
  content: "▶";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(42, 42, 42, 0.85);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; padding-left: 5px;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: background 0.25s;
}
.step-video-frame:hover::after { background: rgba(42,42,42,1); }
.step-video-frame.is-playing::after {
  content: "..";
  letter-spacing: 4px;
  padding-left: 0;
  animation: pulse 1s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.step-video-frame.is-watched .wire-ph {
  background: var(--success-bg);
  border-color: var(--success);
  color: var(--success);
}
.step-video-frame.is-watched::after {
  content: "✓";
  background: var(--success);
  padding-left: 0;
  animation: none;
}
.step-video-status {
  margin: 16px 0 0;
  font-size: 18px;
  color: rgba(91, 91, 91, 1);
  letter-spacing: 0;
  text-align: center;
}
.step-video-frame.is-watched + .step-video-status { color: var(--success); }
.step-video-progress {
  height: 3px; background: var(--line-faint);
  margin: 8px 0 0;
  position: relative;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.step-video-progress::before {
  content: ""; position: absolute; top: 0; left: 0; height: 100%;
  width: 0;
  background: var(--success);
  transition: width 0.2s linear;
}
.step-video-frame.is-playing ~ .step-video-progress::before { width: 100%; transition: width 1.5s linear; }
.step-video-frame.is-watched ~ .step-video-progress::before { width: 100%; }

@media screen and (max-width: 767px) {
  .step-video-block {
    padding: 24px;
  }
  .step-video-label {
    font-size: 16px;
  }
  .step-video-note {
    font-size: 12px;
  }
  .step-video-status {
    font-size: 12px;
  }
}

/* ===== Real Checkbox / Radio ===== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

/* ===== Confirm checkbox (large card style) ===== */
.step-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 0;
  max-width: 960px;
  padding: 24px;
  background: #fff;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, opacity 0.18s;
  user-select: none;
  font-size: 18px;
  color: rgba(91, 91, 91, 1);
}
.step-confirm.is-disabled {
  color: rgba(91, 91, 91, 1);
  cursor: not-allowed;
}
.step-confirm.is-enabled {
  background: #E5F3E0;
  color: rgba(34, 34, 34, 1);
}
.step-confirm:has(input:checked) {
  background: #E5F3E0;
}
.step-confirm-box {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: transparent;
  background: rgba(247, 247, 244, 1);
  transition: all 0.18s;
  border: 1px solid rgba(186, 186, 186, 1);
}
.step-confirm:has(input:checked) .step-confirm-box {
  background: #73C553;
  color: #fff;
}
.step-confirm-box::before { content: "✓"; }
.step-confirm-label {
  line-height: 1.55;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media (max-width: 720px) {
  .step-confirm {
    padding: 14px;
    gap: 8px;
  }
  .step-confirm-label {
    font-size: 13px;
    letter-spacing: -1px;
  }
  .step-confirm-box {
    width: 16px;
    height: 16px;
    font-size: 12px;
  }
}

/* ===== Step nav buttons ===== */
.step-nav {
  margin-top: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.step-next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 520px;
  padding: 24px;
  background: linear-gradient(90deg, rgba(232, 116, 33, 1) 0%, rgba(208, 87, 0, 1) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.18s;
}
.step-next-btn:hover:not(:disabled) {
  background: linear-gradient(90deg, rgba(232, 116, 33, 1) 0%, rgba(208, 87, 0, 1) 100%);
}
.step-next-btn:disabled {
  background: rgba(204, 204, 204, 1);
  cursor: not-allowed;
}
.step-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px 6px 12px;
  font-size: 16px;
  color: rgba(186, 186, 186, 1);
  letter-spacing: 0.04em;
  border-bottom: 1px solid;
  text-underline-offset: 3px;
}
.step-back-btn:hover { color: var(--text); }
.step-next-btn-hint {
  padding: 0 12px 6px 12px;
  font-size: 16px;
  color: rgba(91, 91, 91, 1);
  letter-spacing: 0.04em;
  text-align: center;
}
@media (max-width: 767px) {
  .step-next-btn {
    min-width: 0;
    width: 100%;
    height: 48px;
    padding: 11px 20px;
    font-size: 16px;
  }
  .step-next-btn-hint {
    font-size: 12px;
  }
}

/* ===== Form (Step 3) ===== */
.form-section-card {
  background: #fff;
  border: 1.5px solid var(--line-soft);
  padding: 24px 26px;
  margin-bottom: 18px;
}
.form-section-ttl {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line-faint);
  color: var(--text);
  letter-spacing: 0.06em;
}
.form-row { margin-bottom: 18px; }
.form-row:last-child { margin-bottom: 0; }
.form-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}
.form-required {
  font-size: 10px; letter-spacing: 0.08em;
  padding: 2px 7px;
  background: #c43e3e; color: #fff;
  font-family: monospace;
  font-weight: 400;
}
.form-optional {
  font-size: 10px; letter-spacing: 0.08em;
  padding: 2px 7px;
  background: var(--text-mute); color: #fff;
  font-family: monospace;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px dashed var(--line);
  background: #fafafa;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.04em;
  font-family: monospace;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-style: solid; border-color: var(--primary);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-help {
  margin: 6px 0 0;
  font-size: 11.5px;
  color: var(--text-mute);
  line-height: 1.6;
}
.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 720px) {
  .form-section-card { padding: 18px 16px; }
  .form-row-grid { grid-template-columns: 1fr; }
}

/* Real radio / checkbox visual style */
.form-radio-group, .form-check-group {
  display: flex; flex-wrap: wrap; gap: 8px 12px;
  padding-top: 4px;
}
.form-radio-item, .form-check-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border: 1.5px dashed var(--line-soft);
  background: #fafafa;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
}
.form-radio-item:hover, .form-check-item:hover { border-color: var(--line); background: #fff; }
.form-radio-item input, .form-check-item input { position: absolute; opacity: 0; width: 0; height: 0; }
.form-radio-item .form-radio-box {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  flex-shrink: 0;
  position: relative;
}
.form-radio-item input:checked ~ .form-radio-box::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
}
.form-radio-item:has(input:checked), .form-check-item:has(input:checked) {
  border-style: solid; border-color: var(--primary); background: #fff;
}
.form-check-item .form-check-box {
  width: 16px; height: 16px;
  border: 1.5px solid var(--line);
  background: #fff;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: transparent; font-size: 12px;
}
.form-check-item input:checked ~ .form-check-box {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.form-check-item .form-check-box::before { content: "✓"; }

/* ===== Privacy notice ===== */
.privacy-notice {
  display: flex; align-items: center; gap: 10px;
  margin: 18px auto 0;
  padding: 12px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line-faint);
  font-size: 11.5px;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 640px;
}
.privacy-notice-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--text-sub);
  font-family: monospace;
}

/* ===== 利用規約 ===== */
.terms-block { margin: 18px 0 0; }
.terms-ttl {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0 0 8px;
  letter-spacing: 0.06em;
  text-align: center;
}
.terms-box {
  max-height: 220px;
  overflow-y: auto;
  padding: 16px 18px;
  border: 1.5px solid var(--line-soft);
  background: #fff;
  font-size: 12px;
  line-height: 1.85;
  color: var(--text-sub);
}
.terms-box p { margin: 0 0 10px; }
.terms-box p:last-child { margin-bottom: 0; }
.terms-box-scroll-hint {
  text-align: center; margin: 4px 0 0;
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.04em;
}

/* ===== ダミーテキスト明示 ===== */
.wire-dummy-cap {
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 8px;
  font-size: 11.5px; color: var(--text-mute);
  letter-spacing: 0.04em; line-height: 1.5;
}
.wire-dummy-cap::before {
  content: "DUMMY";
  flex-shrink: 0;
  padding: 2px 8px;
  background: var(--primary); color: #fff;
  font-family: monospace; font-size: 10px; letter-spacing: 0.12em;
}
.terms-box.is-dummy {
  background: repeating-linear-gradient(45deg, #f7f7f7, #f7f7f7 9px, #efefef 9px, #efefef 18px);
  border-style: dashed;
}
.terms-box.is-dummy p { color: var(--text-mute); }
.terms-box.is-dummy .dummy-art { color: var(--text); font-weight: 500; }

/* ===== 外部フォーム埋め込み（ダミー） ===== */
.ext-form-cap {
  text-align: center; font-size: 12.5px; color: var(--text-sub);
  margin: 0 0 14px; line-height: 1.7;
}
.ext-form-ph {
  border: 2px dashed var(--line);
  background: repeating-linear-gradient(45deg, #f7f7f7, #f7f7f7 10px, #efefef 10px, #efefef 20px);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 22px;
}
.ext-form-ph-badge {
  display: inline-block; margin: 0 0 14px;
  padding: 4px 14px;
  background: var(--primary); color: #fff;
  font-family: monospace; font-size: 11px; letter-spacing: 0.14em;
}
.ext-form-ph-title {
  font-size: 16px; font-weight: 500; color: var(--text);
  margin: 0 0 8px; letter-spacing: 0.04em;
}
.ext-form-ph-desc {
  font-size: 12.5px; color: var(--text-sub);
  margin: 0 auto 18px; max-width: 480px; line-height: 1.85;
}
.ext-form-ph-list {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: 380px; text-align: left;
  display: flex; flex-direction: column; gap: 8px;
}
.ext-form-ph-list li {
  background: #fff; border: 1px dashed var(--line-soft);
  padding: 11px 14px; font-size: 13px; color: var(--text-sub);
  display: flex; align-items: center; gap: 10px;
}
.ext-form-ph-list li::before {
  content: "□"; color: var(--text-mute); font-size: 14px; flex-shrink: 0;
}
.step-next-btn.is-demo {
  background: #fff; color: var(--text-sub); border: 1.5px solid var(--line-soft);
}
.step-next-btn.is-demo:hover:not(:disabled) { background: #f5f5f5; border-color: var(--line); color: var(--text); }
@media (max-width: 720px) { .ext-form-ph { padding: 24px 16px; } }

/* ===== Complete panel ===== */
.complete-panel {
  text-align: center;
  max-width: 560px; margin: 0 auto;
  background: #fff;
  padding: 60px 28px;
  border: 1.5px solid var(--success);
}
.complete-mark {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border: 2px solid var(--success);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  border-radius: 50%;
}
.complete-ttl {
  font-size: 22px; margin: 0 0 14px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.complete-lead {
  font-size: 14px; color: var(--text-sub);
  margin: 0 auto 24px;
  line-height: 1.9;
}
.complete-next-step {
  text-align: left;
  padding: 18px 20px;
  background: var(--bg-soft);
  border: 1px dashed var(--line-soft);
  margin: 0 0 18px;
}
.complete-next-step h3 {
  font-size: 13px;
  margin: 0 0 8px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.complete-next-step ol {
  list-style: decimal;
  padding-left: 22px;
  margin: 0;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.85;
}
.complete-note {
  font-size: 12px; color: var(--text-mute);
  margin: 16px 0 0;
}

/* ===== Footer ===== */
.footer {
  background: #2a2a2a;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.footer .container {
  max-width: 100%;
  padding-block: 40px;
  padding-inline: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: "Montserrat", sans-serif;
  color: rgba(91, 91, 91, 1);
}

@media screen and (max-width: 767px) {
  .footer .container {
    padding-block: 24px;
    flex-direction: column;
  }
}