/* Mid-fi wireframe shared styles */
:root {
  --wf-bg: #ffffff;
  --wf-page: #ffffff;
  --wf-ink: #2a2a2a;
  --wf-ink-soft: #5a5a5a;
  --wf-muted: #8a8a8a;
  --wf-line: #c8c8c8;
  --wf-line-strong: #2a2a2a;
  --wf-fill: #ececec;
  --wf-fill-2: #f4f4f4;
  --wf-fill-3: #dedede;
  --wf-accent: #2a2a2a;
  --wf-badge-bg: #2a2a2a;
  --wf-badge-ink: #ffffff;
  --wf-radius: 4px;
  --wf-font: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, -apple-system, sans-serif;
}

.wf {
  font-family: var(--wf-font);
  color: var(--wf-ink);
  background: var(--wf-page);
  line-height: 1.6;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
.wf * { box-sizing: border-box; }

/* Section scaffolding */
.wf-section {
  border-top: 1px dashed var(--wf-line);
  padding: 56px 64px;
  position: relative;
}
.wf-section[data-pad="lg"] { padding: 80px 64px; }
.wf-tag {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--wf-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.wf-mobile .wf-section { padding: 36px 20px; }
.wf-mobile .wf-section[data-pad="lg"] { padding: 48px 20px; }

/* Section heading group */
.wf-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--wf-muted);
  border: 1px solid var(--wf-line);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.wf-h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.wf-mobile .wf-h2 { font-size: 22px; }
.wf-sub {
  color: var(--wf-ink-soft);
  margin: 0 0 32px;
  font-size: 14px;
}

/* Generic boxes */
.wf-box {
  border: 1px solid var(--wf-line);
  border-radius: var(--wf-radius);
  background: var(--wf-page);
}
.wf-fill { background: var(--wf-fill); }
.wf-imgbox {
  background: var(--wf-fill);
  border: 1px solid var(--wf-line);
  border-radius: var(--wf-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}
.wf-imgbox::before,
.wf-imgbox::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, transparent calc(50% - 0.5px), var(--wf-line) calc(50% - 0.5px), var(--wf-line) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}
.wf-imgbox::after {
  background: linear-gradient(to top left, transparent calc(50% - 0.5px), var(--wf-line) calc(50% - 0.5px), var(--wf-line) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}
.wf-imgbox > span {
  position: relative;
  z-index: 1;
  background: var(--wf-fill);
  padding: 4px 8px;
}

/* Lines as text placeholders (when copy is dummy) */
.wf-line {
  height: 10px;
  background: var(--wf-fill);
  border-radius: 2px;
  margin: 6px 0;
}
.wf-line.short { width: 40%; }
.wf-line.mid { width: 70%; }

/* Buttons */
.wf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid var(--wf-line-strong);
  background: var(--wf-page);
  color: var(--wf-ink);
  font-weight: 600;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.wf-btn.primary {
  background: var(--wf-ink);
  color: #fff;
}
.wf-btn.lg {
  padding: 16px 28px;
  font-size: 15px;
  border-radius: 8px;
}
.wf-btn.block { width: 100%; }

/* Free badge — the emphasized element */
.wf-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wf-badge-bg);
  color: var(--wf-badge-ink);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.wf-free-badge.lg {
  font-size: 14px;
  padding: 8px 16px;
}

/* Rotating stamp badge for hero */
.wf-stamp {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--wf-ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  transform: rotate(-12deg);
  border: 3px double #fff;
  outline: 1px solid var(--wf-ink);
  outline-offset: -8px;
}
.wf-stamp .big { font-size: 28px; letter-spacing: -0.02em; }
.wf-stamp .sm { font-size: 10px; letter-spacing: 0.08em; margin-top: 2px; }

/* Hero specific */
.wf-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.wf-mobile .wf-hero {
  grid-template-columns: 1fr;
  gap: 28px;
}
.wf-hero-copy h1 {
  font-size: 44px;
  line-height: 1.25;
  margin: 16px 0 18px;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.wf-mobile .wf-hero-copy h1 { font-size: 30px; line-height: 1.3; }
.wf-hero-copy h1 .mark {
  background: linear-gradient(to bottom, transparent 60%, #ffe27a 60%);
  padding: 0 4px;
}
.wf-hero-copy p {
  color: var(--wf-ink-soft);
  margin: 0 0 24px;
  font-size: 15px;
}
.wf-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.wf-hero-trust {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--wf-ink-soft);
  align-items: center;
}
.wf-hero-trust .dot { width: 6px; height: 6px; background: var(--wf-ink); border-radius: 50%; }

.wf-hero-visual {
  aspect-ratio: 4 / 3.4;
  position: relative;
}
.wf-mobile .wf-hero-visual { aspect-ratio: 4 / 3; }
.wf-hero-visual .stamp-wrap {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
}

/* Header */
.wf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 1px solid var(--wf-line);
  background: var(--wf-page);
  position: sticky;
  top: 0;
  z-index: 10;
}
.wf-mobile .wf-header { padding: 12px 16px; }
.wf-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; letter-spacing: 0.02em;
}
.wf-logo .mark {
  width: 26px; height: 26px; border-radius: 6px; background: var(--wf-ink);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px;
}
.wf-nav { display: flex; gap: 22px; font-size: 13px; color: var(--wf-ink-soft); }
.wf-nav a { color: inherit; text-decoration: none; }
.wf-header-cta { display: flex; gap: 10px; align-items: center; }

/* Problem cards */
.wf-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wf-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wf-mobile .wf-grid-3,
.wf-mobile .wf-grid-4 { grid-template-columns: 1fr; gap: 12px; }

.wf-problem-card {
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  padding: 24px 20px;
  background: var(--wf-page);
  text-align: center;
}
.wf-problem-card .icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px dashed var(--wf-line);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wf-muted); font-size: 10px;
}
.wf-problem-card h4 {
  font-size: 15px; margin: 0 0 8px; font-weight: 700;
}
.wf-problem-card p {
  font-size: 12px; color: var(--wf-ink-soft); margin: 0;
}

/* Feature cards */
.wf-feature {
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  padding: 24px;
  background: var(--wf-page);
}
.wf-feature .num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: var(--wf-muted);
  margin-bottom: 10px;
}
.wf-feature .imgbox-sm {
  height: 120px;
  margin-bottom: 14px;
}
.wf-feature h4 { font-size: 16px; margin: 0 0 8px; font-weight: 700; }
.wf-feature p { font-size: 12px; color: var(--wf-ink-soft); margin: 0; }

/* Comparison table */
.wf-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  overflow: hidden;
}
.wf-compare th, .wf-compare td {
  padding: 16px 14px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid var(--wf-line);
  border-right: 1px solid var(--wf-line);
}
.wf-compare th:last-child, .wf-compare td:last-child { border-right: none; }
.wf-compare tr:last-child td { border-bottom: none; }
.wf-compare th {
  background: var(--wf-fill-2);
  font-weight: 600;
  font-size: 12px;
}
.wf-compare th.us {
  background: var(--wf-ink);
  color: #fff;
  position: relative;
}
.wf-compare td.us {
  background: #f7f5ef;
  font-weight: 600;
}
.wf-compare td:first-child {
  text-align: left;
  font-weight: 600;
  background: var(--wf-fill-2);
  font-size: 12px;
}
.wf-mark-o { font-size: 18px; }
.wf-mark-x { font-size: 16px; color: var(--wf-muted); }
.wf-mark-tri { font-size: 16px; color: var(--wf-muted); }

/* Steps */
.wf-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.wf-mobile .wf-steps { grid-template-columns: 1fr; }
.wf-step {
  padding: 24px 20px;
  position: relative;
  border-left: 1px solid var(--wf-line);
}
.wf-step:first-child { border-left: none; }
.wf-mobile .wf-step { border-left: none; border-top: 1px solid var(--wf-line); }
.wf-mobile .wf-step:first-child { border-top: none; }
.wf-step .step-num {
  display: inline-flex;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--wf-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  align-items: center; justify-content: center;
  margin-bottom: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.wf-step h4 { font-size: 14px; margin: 0 0 6px; font-weight: 700; }
.wf-step p { font-size: 12px; color: var(--wf-ink-soft); margin: 0 0 10px; }
.wf-step .pay-flag {
  font-size: 10px;
  color: var(--wf-muted);
  border: 1px solid var(--wf-line);
  border-radius: 3px;
  padding: 2px 6px;
  display: inline-block;
}
.wf-step .pay-flag.charged {
  background: var(--wf-ink);
  color: #fff;
  border-color: var(--wf-ink);
}

/* Pricing cards (default 3-card layout) */
.wf-pricing-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.wf-pricing-tab {
  padding: 8px 16px;
  border: 1px solid var(--wf-line);
  border-radius: 999px;
  font-size: 12px;
  background: var(--wf-page);
  cursor: pointer;
  color: var(--wf-ink-soft);
}
.wf-pricing-tab[aria-selected="true"] {
  background: var(--wf-ink);
  color: #fff;
  border-color: var(--wf-ink);
}

.wf-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wf-mobile .wf-plans { grid-template-columns: 1fr; gap: 16px; }

.wf-plan {
  border: 1px solid var(--wf-line);
  border-radius: 12px;
  padding: 28px 24px;
  background: var(--wf-page);
  display: flex;
  flex-direction: column;
  position: relative;
}
.wf-plan.featured {
  border-color: var(--wf-ink);
  border-width: 2px;
  background: #fafaf7;
}
.wf-plan .plan-name {
  font-size: 13px;
  color: var(--wf-muted);
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 4px;
}
.wf-plan .plan-headline {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
}
.wf-plan .plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.wf-plan .plan-price .num { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.wf-plan .plan-price .unit { font-size: 13px; color: var(--wf-ink-soft); }
.wf-plan .plan-note { font-size: 11px; color: var(--wf-muted); margin-bottom: 18px; }
.wf-plan .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px dashed var(--wf-line);
  padding-top: 18px;
}
.wf-plan .plan-features li {
  font-size: 12px;
  color: var(--wf-ink-soft);
  display: flex;
  gap: 8px;
  line-height: 1.5;
}
.wf-plan .plan-features li::before {
  content: "✓";
  color: var(--wf-ink);
  font-weight: 700;
  flex-shrink: 0;
}
.wf-plan .plan-cta { margin-top: auto; }
.wf-plan .ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wf-ink);
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

/* Pricing — single emphasis layout */
.wf-plan-single {
  border: 2px solid var(--wf-ink);
  border-radius: 16px;
  padding: 40px;
  background: #fafaf7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.wf-mobile .wf-plan-single { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
.wf-plan-single .price-big { font-size: 80px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.wf-mobile .wf-plan-single .price-big { font-size: 56px; }
.wf-plan-single .price-strike {
  font-size: 16px; color: var(--wf-muted);
  text-decoration: line-through;
  text-decoration-color: var(--wf-muted);
  margin-bottom: 6px;
}

/* Pricing — compare table layout */
.wf-price-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--wf-line);
  border-radius: 12px;
  overflow: hidden;
}
.wf-price-compare th, .wf-price-compare td {
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid var(--wf-line);
  border-right: 1px solid var(--wf-line);
  vertical-align: middle;
}
.wf-price-compare th:last-child, .wf-price-compare td:last-child { border-right: none; }
.wf-price-compare tr:last-child td { border-bottom: none; }
.wf-price-compare th { background: var(--wf-fill-2); font-weight: 600; }
.wf-price-compare th.featured { background: var(--wf-ink); color: #fff; }
.wf-price-compare td.featured { background: #fafaf7; }
.wf-price-compare td:first-child { text-align: left; font-weight: 600; font-size: 12px; background: var(--wf-fill-2); }
.wf-price-compare .price-row td { font-size: 22px; font-weight: 800; }
.wf-price-compare .price-row td .unit { font-size: 11px; font-weight: 400; color: var(--wf-ink-soft); }
.wf-mobile .wf-price-compare { font-size: 11px; }
.wf-mobile .wf-price-compare th, .wf-mobile .wf-price-compare td { padding: 10px 6px; }

/* Works grid */
.wf-works { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wf-mobile .wf-works { grid-template-columns: repeat(2, 1fr); gap: 10px; }
.wf-works .wf-imgbox { aspect-ratio: 4 / 3; }
.wf-works .caption {
  margin-top: 8px;
  font-size: 11px;
  color: var(--wf-ink-soft);
  display: flex; justify-content: space-between;
}

/* Voice cards */
.wf-voice {
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  padding: 20px;
  background: var(--wf-page);
}
.wf-voice .top { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.wf-voice .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--wf-fill); border: 1px solid var(--wf-line); }
.wf-voice .name { font-size: 13px; font-weight: 700; }
.wf-voice .meta { font-size: 10px; color: var(--wf-muted); }
.wf-voice .stars { font-size: 12px; color: var(--wf-ink); letter-spacing: 2px; margin-bottom: 8px; }
.wf-voice p { font-size: 12px; color: var(--wf-ink-soft); margin: 0; line-height: 1.7; }

/* FAQ */
.wf-faq-item {
  border-bottom: 1px solid var(--wf-line);
  padding: 18px 0;
}
.wf-faq-item:first-child { border-top: 1px solid var(--wf-line); }
.wf-faq-item .q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.wf-faq-item .q::before {
  content: "Q.";
  font-family: ui-monospace, monospace;
  color: var(--wf-muted);
  margin-right: 10px;
}
.wf-faq-item .a {
  font-size: 12px;
  color: var(--wf-ink-soft);
  margin-top: 10px;
  padding-left: 28px;
  display: none;
}
.wf-faq-item.open .a { display: block; }
.wf-faq-item .toggle {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--wf-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; line-height: 1;
}

/* Final CTA */
.wf-final-cta {
  background: var(--wf-ink);
  color: #fff;
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wf-mobile .wf-final-cta { padding: 36px 20px; border-radius: 12px; }
.wf-final-cta h2 { font-size: 30px; margin: 12px 0 10px; line-height: 1.3; }
.wf-mobile .wf-final-cta h2 { font-size: 22px; }
.wf-final-cta p { color: rgba(255,255,255,0.7); margin: 0 0 24px; font-size: 13px; }
.wf-final-cta .wf-btn { background: #fff; color: var(--wf-ink); border-color: #fff; }
.wf-final-cta .wf-free-badge { background: #ffe27a; color: var(--wf-ink); }

/* Footer */
.wf-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.6);
  padding: 40px 32px 24px;
  font-size: 12px;
}
.wf-mobile .wf-footer { padding: 28px 20px 20px; }
.wf-footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.wf-mobile .wf-footer-top { grid-template-columns: 1fr 1fr; gap: 18px; }
.wf-footer h5 { color: #fff; font-size: 12px; margin: 0 0 10px; }
.wf-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.wf-footer-bottom { padding-top: 16px; display: flex; justify-content: space-between; }
.wf-mobile .wf-footer-bottom { flex-direction: column; gap: 8px; }

/* Mobile fixed CTA bar */
.wf-mobile-cta-bar {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--wf-line);
  padding: 10px 14px;
  display: flex; gap: 8px;
  z-index: 10;
}

/* ── Process comparison (section 04) ─────────────────────────── */
.wf-process-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.wf-mobile .wf-process-compare { grid-template-columns: 1fr; gap: 16px; }
.wf-process-col {
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  padding: 24px;
  background: var(--wf-page);
}
.wf-process-col.us {
  border: 2px solid var(--wf-ink);
  background: #fafaf7;
}
.wf-process-col h4 {
  font-size: 14px; margin: 0 0 4px;
  color: var(--wf-muted); font-weight: 600;
  letter-spacing: 0.05em;
}
.wf-process-col.us h4 { color: var(--wf-ink); }
.wf-process-col h3 {
  font-size: 18px; margin: 0 0 18px; font-weight: 700;
}
.wf-process-col ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: pstep;
}
.wf-process-col ol li {
  counter-increment: pstep;
  position: relative;
  padding: 10px 0 10px 36px;
  font-size: 13px;
  border-bottom: 1px dashed var(--wf-line);
}
.wf-process-col ol li:last-child { border-bottom: none; }
.wf-process-col ol li::before {
  content: counter(pstep, decimal-leading-zero);
  position: absolute;
  left: 0; top: 10px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--wf-muted);
  font-weight: 700;
}
.wf-process-col.us ol li::before { color: var(--wf-ink); }
.wf-process-col.us ol li.highlight {
  background: #fff4d6;
  margin: 0 -8px;
  padding-left: 44px;
  padding-right: 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* ── Long step list (section 06: 10 steps) ──────────────────── */
.wf-steplist {
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  background: var(--wf-page);
  overflow: hidden;
}
.wf-steplist .step-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--wf-line);
  align-items: flex-start;
}
.wf-mobile .wf-steplist .step-row {
  grid-template-columns: 60px 1fr;
  gap: 10px;
  padding: 14px 16px;
}
.wf-steplist .step-row:last-child { border-bottom: none; }
.wf-steplist .step-row.charged {
  background: #fafaf7;
}
.wf-steplist .step-no {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--wf-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 6px;
}
.wf-steplist .step-no .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--wf-ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.wf-steplist .step-row.charged .step-no .dot { background: #c96442; }
.wf-steplist h4 {
  font-size: 14px; font-weight: 700; margin: 0 0 4px;
}
.wf-steplist p {
  font-size: 12px; color: var(--wf-ink-soft); margin: 0;
  line-height: 1.6;
}
.wf-steplist .step-pay {
  font-size: 10px;
  border: 1px solid var(--wf-line);
  border-radius: 3px;
  padding: 3px 8px;
  white-space: nowrap;
  color: var(--wf-muted);
}
.wf-mobile .wf-steplist .step-pay {
  grid-column: 2;
  justify-self: start;
  margin-top: 4px;
}
.wf-steplist .step-pay.free { color: var(--wf-ink-soft); }
.wf-steplist .step-pay.paid {
  background: #c96442;
  color: #fff;
  border-color: #c96442;
  font-weight: 700;
}

/* ── Price summary table (section 08) ───────────────────────── */
.wf-price-summary {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  overflow: hidden;
}
.wf-price-summary th, .wf-price-summary td {
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid var(--wf-line);
  border-right: 1px solid var(--wf-line);
}
.wf-price-summary th:last-child, .wf-price-summary td:last-child { border-right: none; }
.wf-price-summary tr:last-child td { border-bottom: none; }
.wf-price-summary th {
  background: var(--wf-fill-2);
  font-weight: 600;
  font-size: 12px;
}
.wf-price-summary td:first-child {
  text-align: left;
  font-weight: 700;
  background: var(--wf-fill-2);
  font-size: 13px;
}
.wf-price-summary .featured-row td {
  background: #fafaf7;
}

/* ── Included grid (section 09) ─────────────────────────────── */
.wf-included {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.wf-mobile .wf-included { grid-template-columns: 1fr 1fr; gap: 10px; }
.wf-included .cat {
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  padding: 20px;
  background: var(--wf-page);
}
.wf-included .cat h4 {
  font-size: 14px; margin: 0 0 10px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--wf-ink);
  display: inline-block;
}
.wf-included .cat ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.wf-included .cat ul li {
  font-size: 12px;
  color: var(--wf-ink-soft);
  padding-left: 14px;
  position: relative;
}
.wf-included .cat ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wf-ink);
  font-weight: 700;
}

/* ── Page selection (section 10) ────────────────────────────── */
.wf-pageselect {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wf-mobile .wf-pageselect { grid-template-columns: 1fr; gap: 12px; }
.wf-pageselect .item {
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  padding: 24px 20px;
  background: var(--wf-page);
}
.wf-pageselect .item .tag {
  display: inline-block;
  background: var(--wf-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.wf-pageselect .item h4 { font-size: 15px; margin: 0 0 10px; }
.wf-pageselect .item ul {
  margin: 0; padding-left: 18px;
  font-size: 12px;
  color: var(--wf-ink-soft);
  line-height: 1.8;
}

/* ── Extra fee chips (section 11) ───────────────────────────── */
.wf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.wf-chip {
  border: 1px solid var(--wf-line);
  background: var(--wf-page);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--wf-ink-soft);
}

/* ── Quality checklist (section 13) ─────────────────────────── */
.wf-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.wf-mobile .wf-checklist { grid-template-columns: 1fr; }
.wf-checklist .item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--wf-line);
  border-radius: 6px;
  background: var(--wf-page);
  font-size: 13px;
}
.wf-checklist .item .chk {
  width: 18px; height: 18px;
  border-radius: 4px;
  background: var(--wf-ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* ── Target checklist (section 14) ──────────────────────────── */
.wf-target {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wf-mobile .wf-target { grid-template-columns: 1fr; }
.wf-target .row {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--wf-line);
  border-radius: 6px;
  background: var(--wf-page);
  font-size: 13px;
  line-height: 1.5;
}
.wf-target .row .chk {
  width: 22px; height: 22px;
  border: 2px solid var(--wf-ink);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--wf-ink);
  font-weight: 700;
}

/* ── Note callout (light yellow) ────────────────────────────── */
.wf-note {
  background: #fff7e6;
  border: 1px solid #e8d9a8;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 12px;
  color: #6b5a20;
  line-height: 1.6;
  margin-top: 16px;
}
.wf-note strong { color: #4a3a00; }

/* Annotation pills (designer notes on the wireframe) */
.wf-annot {
  position: absolute;
  background: #fff7a8;
  color: #4a3a00;
  border: 1px solid #d8c84a;
  border-radius: 4px;
  font-size: 10px;
  padding: 3px 7px;
  font-family: ui-monospace, monospace;
  line-height: 1.3;
  z-index: 3;
  max-width: 200px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

/* Misc */
.wf-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.wf-center { text-align: center; }
.wf-divider { height: 1px; background: var(--wf-line); margin: 16px 0; }
.wf-small { font-size: 11px; color: var(--wf-muted); }
.wf-strong { font-weight: 700; }
