:root {
  --wf-navy: #071a38;
  --wf-ink: #10233f;
  --wf-copy: #40536f;
  --wf-muted: #7587a1;
  --wf-blue: #1768f2;
  --wf-blue-deep: #1747d1;
  --wf-cyan: #16bde9;
  --wf-green: #12a77b;
  --wf-amber: #d98c19;
  --wf-red: #d84d58;
  --wf-bg: #f4f7fc;
  --wf-card: #ffffff;
  --wf-line: #dce5f1;
  --wf-shadow: 0 20px 55px rgba(20, 57, 112, .09);
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body.wf-page { min-width: 320px; min-height: 100dvh; margin: 0; background: var(--wf-bg); color: var(--wf-ink); font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif; }
body.wf-page.lock { overflow: hidden; }
.wf-page a { color: inherit; text-decoration: none; }
.wf-page button,
.wf-page input,
.wf-page select,
.wf-page textarea { font: inherit; }
.wf-page button,
.wf-page a { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.wf-container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.wf-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(214, 226, 242, .9); background: rgba(255, 255, 255, .94); backdrop-filter: blur(18px); }
.wf-header-inner { min-height: 70px; display: flex; align-items: center; gap: 24px; }
.wf-brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.wf-brand-mark { width: 39px; height: 39px; position: relative; flex: 0 0 auto; border-radius: 13px; background: linear-gradient(145deg, var(--wf-blue-deep), var(--wf-cyan)); box-shadow: 0 9px 20px rgba(23, 104, 242, .2); }
.wf-brand-mark::before,
.wf-brand-mark::after { content: ""; position: absolute; border: 2px solid rgba(255, 255, 255, .9); border-radius: 4px; transform: rotate(45deg); }
.wf-brand-mark::before { inset: 10px; }
.wf-brand-mark::after { inset: 15px; background: #fff; }
.wf-brand b,
.wf-brand small { display: block; }
.wf-brand b { font-size: 14px; letter-spacing: -.2px; }
.wf-brand small { margin-top: 2px; color: #8796aa; font-size: 8px; font-weight: 700; letter-spacing: 1px; }
.wf-header-nav { display: flex; align-items: center; gap: 6px; }
.wf-header-nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 13px; border-radius: 10px; color: #61738d; font-size: 11px; font-weight: 800; transition: .2s ease; }
.wf-header-nav a:hover,
.wf-header-nav a.is-active { background: #edf4ff; color: var(--wf-blue); }
.wf-header-actions { display: flex; align-items: center; gap: 9px; }

.wf-btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 17px; border: 1px solid transparent; border-radius: 11px; background: transparent; color: var(--wf-copy); cursor: pointer; font-size: 11px; font-weight: 900; transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.wf-btn:hover { transform: translateY(-1px); }
.wf-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.wf-btn-primary { background: linear-gradient(135deg, var(--wf-blue-deep), var(--wf-blue)); color: #fff; box-shadow: 0 10px 24px rgba(23, 84, 218, .18); }
.wf-btn-primary:hover { box-shadow: 0 14px 30px rgba(23, 84, 218, .24); }
.wf-btn-secondary { border-color: #cdd9e9; background: #fff; }
.wf-btn-secondary:hover { border-color: #9fb6d5; background: #f8fbff; }
.wf-btn-danger { border-color: #f0c9cd; background: #fff6f7; color: #c74350; }
.wf-btn-success { background: #0f9b72; color: #fff; box-shadow: 0 9px 22px rgba(15, 155, 114, .18); }
.wf-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.wf-status-badge { min-height: 27px; display: inline-flex; align-items: center; gap: 7px; padding: 0 10px; border-radius: 99px; font-size: 9px; font-weight: 900; }
.wf-status-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 12%, transparent); }
.wf-tone-warning { background: #fff6e8; color: #b66c0d; }
.wf-tone-success { background: #e9f8f2; color: #0b8d67; }
.wf-tone-danger { background: #fff0f2; color: #c94250; }
.wf-tone-neutral { background: #edf1f6; color: #65758b; }

.wf-main { padding: 42px 0 70px; }
.wf-page-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.wf-page-title > div > span { color: var(--wf-blue); font-size: 9px; font-weight: 900; letter-spacing: 1.5px; }
.wf-page-title h1 { margin: 9px 0 7px; font-size: clamp(27px, 3vw, 40px); letter-spacing: -1.2px; }
.wf-page-title p { margin: 0; color: var(--wf-muted); font-size: 12px; line-height: 1.75; }
.wf-card { border: 1px solid rgba(214, 225, 240, .95); border-radius: 18px; background: var(--wf-card); box-shadow: var(--wf-shadow); }

.wf-status-hero { position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; padding: 32px; background: radial-gradient(circle at 100% 0, rgba(35, 192, 235, .16), transparent 28%), linear-gradient(135deg, #09265b, #104ba5); color: #fff; }
.wf-status-hero::after { content: ""; position: absolute; right: -100px; bottom: -160px; z-index: -1; width: 390px; height: 390px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018); }
.wf-status-copy > span { color: #79e2ff; font-size: 9px; font-weight: 900; letter-spacing: 1.5px; }
.wf-status-copy h2 { margin: 12px 0 10px; color: #fff; font-size: 30px; letter-spacing: -.8px; }
.wf-status-copy p { max-width: 650px; margin: 0; color: #c8daf3; font-size: 12px; line-height: 1.8; }
.wf-status-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 23px; }
.wf-status-actions .wf-btn-secondary { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: #fff; }
.wf-status-number { align-self: center; padding: 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(255,255,255,.09); backdrop-filter: blur(12px); }
.wf-status-number small,
.wf-status-number b,
.wf-status-number span { display: block; }
.wf-status-number small { color: #a9c6e9; font-size: 9px; }
.wf-status-number b { margin-top: 7px; color: #fff; font-size: 17px; letter-spacing: .5px; }
.wf-status-number span { margin-top: 12px; color: #8ff0d3; font-size: 9px; }

.wf-progress { display: grid; grid-template-columns: repeat(4, 1fr); margin: 20px 0; padding: 22px 25px; }
.wf-progress-three { grid-template-columns: repeat(3, 1fr); }
.wf-progress-step { position: relative; display: flex; align-items: center; gap: 11px; color: #8a99ac; }
.wf-progress-step:not(:last-child)::after { content: ""; position: absolute; top: 17px; left: 45px; width: calc(100% - 52px); height: 2px; background: #e1e8f2; }
.wf-progress-step > i { width: 34px; height: 34px; z-index: 1; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #d8e2ef; border-radius: 11px; background: #f5f8fc; font-style: normal; font-size: 10px; font-weight: 900; }
.wf-progress-step b,
.wf-progress-step small { display: block; }
.wf-progress-step b { color: #4e6079; font-size: 10px; }
.wf-progress-step small { margin-top: 3px; font-size: 8px; }
.wf-progress-step.is-done { color: var(--wf-green); }
.wf-progress-step.is-done > i { border-color: transparent; background: var(--wf-green); color: #fff; }
.wf-progress-step.is-done:not(:last-child)::after { background: #75d2b7; }
.wf-progress-step.is-current > i { border-color: transparent; background: var(--wf-blue); color: #fff; box-shadow: 0 0 0 5px rgba(23,104,242,.1); }

.wf-two-col { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 20px; }
.wf-section-card { padding: 25px; }
.wf-section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.wf-section-head h2 { margin: 0; font-size: 17px; }
.wf-section-head p { margin: 5px 0 0; color: var(--wf-muted); font-size: 10px; }
.wf-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid #e0e8f3; border-radius: 14px; background: #e0e8f3; }
.wf-detail { min-height: 75px; padding: 14px 16px; background: #fff; }
.wf-detail.full { grid-column: 1 / -1; }
.wf-detail small,
.wf-detail b { display: block; }
.wf-detail small { color: #8998ab; font-size: 9px; }
.wf-detail b { margin-top: 7px; overflow-wrap: anywhere; color: #354b67; font-size: 11px; line-height: 1.6; }
.wf-note { margin-bottom: 16px; padding: 15px; border-left: 3px solid var(--wf-blue); border-radius: 0 11px 11px 0; background: #f2f7ff; }
.wf-note b { display: block; color: #355172; font-size: 10px; }
.wf-note p { margin: 6px 0 0; color: #677b96; font-size: 10px; line-height: 1.65; }

.wf-timeline { display: grid; gap: 0; }
.wf-log { position: relative; min-height: 72px; display: grid; grid-template-columns: 24px 1fr; gap: 11px; padding-bottom: 18px; }
.wf-log:not(:last-child)::before { content: ""; position: absolute; top: 24px; bottom: 0; left: 11px; width: 1px; background: #dce5f0; }
.wf-log > i { width: 24px; height: 24px; z-index: 1; display: grid; place-items: center; border-radius: 50%; background: #edf3fb; color: var(--wf-blue); font-style: normal; font-size: 8px; font-weight: 900; }
.wf-log b,
.wf-log small { display: block; }
.wf-log b { color: #3d526e; font-size: 10px; }
.wf-log p { margin: 5px 0; color: #70839c; font-size: 9px; line-height: 1.6; }
.wf-log small { color: #9aa7b8; font-size: 8px; }
.wf-empty { display: grid; place-items: center; min-height: 270px; padding: 35px; text-align: center; }
.wf-empty i { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: #edf4ff; color: var(--wf-blue); font-size: 22px; font-style: normal; }
.wf-empty h2 { margin: 18px 0 8px; font-size: 19px; }
.wf-empty p { max-width: 430px; margin: 0 0 20px; color: var(--wf-muted); font-size: 11px; line-height: 1.75; }
.wf-status-empty > div { width: min(720px, 100%); }
.wf-status-lookup { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 12px; margin: 0 auto; padding: 18px; border: 1px solid #e0e8f3; border-radius: 15px; background: #f8fbff; text-align: left; }
.wf-status-lookup-actions { display: flex; align-items: center; gap: 9px; }
.wf-status-lookup-actions .wf-btn { white-space: nowrap; }

/* Member workspace */
.wf-workspace { min-height: calc(100dvh - 70px); display: grid; grid-template-columns: 230px minmax(0, 1fr); }
.wf-sidebar { position: sticky; top: 70px; height: calc(100dvh - 70px); display: flex; flex-direction: column; padding: 23px 16px; border-right: 1px solid #dfe7f1; background: #fff; }
.wf-provider-mini { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 10px; margin-bottom: 24px; padding: 10px; border-radius: 13px; background: #f3f7fd; }
.wf-provider-mini > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--wf-blue), var(--wf-cyan)); color: #fff; font-size: 11px; font-weight: 900; }
.wf-provider-mini b,
.wf-provider-mini small { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wf-provider-mini b { color: #314763; font-size: 10px; }
.wf-provider-mini small { margin-top: 4px; color: var(--wf-green); font-size: 8px; }
.wf-side-nav { display: grid; gap: 5px; }
.wf-side-nav button { min-height: 44px; display: flex; align-items: center; gap: 11px; padding: 0 13px; border: 0; border-radius: 11px; background: transparent; color: #60738e; cursor: pointer; text-align: left; font-size: 10px; font-weight: 800; transition: .2s ease; }
.wf-side-nav button:hover { background: #f2f6fc; color: #334c6b; }
.wf-side-nav button.is-active { background: #eaf2ff; color: var(--wf-blue); }
.wf-side-nav svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.wf-sidebar-foot { margin-top: auto; padding: 13px; border-radius: 12px; background: #f7f9fc; color: #7889a0; font-size: 8px; line-height: 1.6; }
.wf-workspace-main { min-width: 0; padding: 32px clamp(20px, 4vw, 52px) 60px; }
.wf-workspace-section[hidden] { display: none; }
.wf-workspace-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.wf-workspace-heading h1 { margin: 0 0 7px; font-size: 27px; letter-spacing: -.7px; }
.wf-workspace-heading p { margin: 0; color: var(--wf-muted); font-size: 11px; }
.wf-stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.wf-stat { min-height: 124px; padding: 18px; }
.wf-stat-head { display: flex; align-items: center; justify-content: space-between; }
.wf-stat-head span { color: #6f829c; font-size: 9px; font-weight: 800; }
.wf-stat-head i { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; background: #edf4ff; color: var(--wf-blue); font-style: normal; font-size: 11px; }
.wf-stat strong { display: block; margin-top: 13px; font-size: 27px; letter-spacing: -.7px; }
.wf-stat small { display: block; margin-top: 4px; color: #93a0b1; font-size: 8px; }
.wf-dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 16px; margin-top: 16px; }
.wf-flow-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.wf-flow-list-four { grid-template-columns: repeat(4, 1fr); }
.wf-flow-item { position: relative; padding: 15px; border: 1px solid #e0e8f2; border-radius: 13px; background: #fbfcfe; }
.wf-flow-item > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: #eaf2ff; color: var(--wf-blue); font-size: 9px; font-weight: 900; }
.wf-flow-item b { display: block; margin-top: 12px; color: #3c526e; font-size: 10px; }
.wf-flow-item small { display: block; margin-top: 5px; color: #8292a7; font-size: 8px; line-height: 1.55; }
.wf-flow-item.is-done > span { background: #e5f8f1; color: var(--wf-green); }

.wf-filter-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 15px; }
.wf-filter-row button { min-height: 44px; flex: 0 0 auto; padding: 0 13px; border: 1px solid #d8e2ee; border-radius: 9px; background: #fff; color: #687b94; cursor: pointer; font-size: 9px; font-weight: 800; }
.wf-filter-row button.is-active { border-color: #98b8ee; background: #edf4ff; color: var(--wf-blue); }
.wf-service-list { display: grid; gap: 12px; }
.wf-service-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; padding: 19px 21px; }
.wf-service-card-head { display: flex; align-items: center; gap: 9px; }
.wf-service-card-head > span:first-child { color: var(--wf-blue); font-size: 9px; font-weight: 900; }
.wf-service-card h3 { margin: 11px 0 7px; color: #2d4563; font-size: 15px; line-height: 1.45; }
.wf-service-card p { max-width: 700px; margin: 0; color: #71839b; font-size: 10px; line-height: 1.65; }
.wf-service-meta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 12px; color: #95a2b2; font-size: 8px; }
.wf-service-actions { display: flex; align-items: center; gap: 8px; }
.wf-service-actions .wf-btn { min-height: 44px; padding: 0 12px; font-size: 9px; }

.wf-profile-form { padding: 25px; }
.wf-profile-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.wf-field { min-width: 0; }
.wf-field.full { grid-column: 1 / -1; }
.wf-field label { display: block; margin-bottom: 8px; color: #425873; font-size: 10px; font-weight: 900; }
.wf-field input,
.wf-field select,
.wf-field textarea { width: 100%; min-height: 47px; padding: 0 13px; border: 1px solid #d6e1ee; border-radius: 10px; outline: 0; background: #fff; color: #304863; font-size: 11px; transition: .2s ease; }
.wf-field textarea { min-height: 120px; padding-top: 12px; resize: vertical; line-height: 1.7; }
.wf-field input:focus,
.wf-field select:focus,
.wf-field textarea:focus { border-color: #70a0ef; box-shadow: 0 0 0 4px rgba(23,104,242,.08); }
.wf-field input[readonly] { background: #f6f8fb; color: #7c8da3; }
.wf-field small { display: block; margin-top: 6px; color: #8f9cac; font-size: 8px; }
.wf-form-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 20px; padding-top: 18px; border-top: 1px solid #e4ebf4; }

.wf-dialog { width: min(760px, calc(100vw - 28px)); max-width: none; max-height: calc(100dvh - 28px); padding: 0; border: 0; border-radius: 20px; background: #fff; box-shadow: 0 38px 110px rgba(3,18,48,.36); overflow: hidden; }
.wf-dialog::backdrop { background: rgba(4, 17, 42, .66); backdrop-filter: blur(7px); }
.wf-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 24px 27px 19px; border-bottom: 1px solid #e2e9f3; }
.wf-dialog-head span { color: var(--wf-blue); font-size: 8px; font-weight: 900; letter-spacing: 1.3px; }
.wf-dialog-head h2 { margin: 7px 0 5px; font-size: 22px; }
.wf-dialog-head p { margin: 0; color: var(--wf-muted); font-size: 9px; }
.wf-dialog-close { width: 44px; height: 44px; flex: 0 0 auto; border: 1px solid #d9e3ef; border-radius: 11px; background: #f5f8fc; color: #60728a; cursor: pointer; font-size: 20px; }
.wf-dialog-body { max-height: calc(100dvh - 210px); padding: 23px 27px; overflow-y: auto; }
.wf-dialog-foot { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 27px; border-top: 1px solid #e2e9f3; background: #fbfcfe; }
.wf-dialog-foot p { margin: 0; color: #8292a6; font-size: 8px; }
.wf-dialog-foot > div { display: flex; gap: 8px; }
.wf-char-count { text-align: right; }

/* Review console */
.wf-review-hero { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 18px; padding: 25px 28px; }
.wf-review-hero h1 { margin: 0 0 7px; font-size: 25px; }
.wf-review-hero p { margin: 0; color: var(--wf-muted); font-size: 10px; }
.wf-review-tabs { display: flex; gap: 7px; margin-bottom: 16px; }
.wf-review-tabs button { min-height: 44px; padding: 0 16px; border: 1px solid #d8e1ed; border-radius: 10px; background: #fff; color: #687a92; cursor: pointer; font-size: 10px; font-weight: 900; }
.wf-review-tabs button.is-active { border-color: transparent; background: var(--wf-blue); color: #fff; }
.wf-review-panel[hidden] { display: none; }
.wf-review-card { padding: 23px; }
.wf-review-card + .wf-review-card { margin-top: 13px; }
.wf-review-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.wf-review-card-top h2 { margin: 8px 0 5px; font-size: 18px; }
.wf-review-card-top p { margin: 0; color: var(--wf-muted); font-size: 9px; }
.wf-review-materials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 13px; }
.wf-material { min-height: 86px; display: flex; align-items: center; gap: 12px; padding: 13px; border: 1px solid #dce5ef; border-radius: 12px; background: #f8fafd; }
.wf-material i { width: 37px; height: 37px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: #e8f1ff; color: var(--wf-blue); font-style: normal; font-size: 10px; font-weight: 900; }
.wf-material img { width: 74px; height: 52px; flex: 0 0 auto; object-fit: cover; border: 1px solid #d8e2ef; border-radius: 9px; background: #eef4fb; }
.wf-material b,
.wf-material small { display: block; }
.wf-material b { color: #435872; font-size: 9px; }
.wf-material small { max-width: 200px; margin-top: 5px; overflow: hidden; color: #8190a4; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.wf-review-decision { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 11px; margin-top: 17px; padding-top: 17px; border-top: 1px solid #e3eaf3; }
.wf-review-decision textarea { min-height: 66px; padding: 11px 13px; border: 1px solid #d6e1ed; border-radius: 10px; outline: 0; resize: vertical; color: #354c68; font-size: 10px; line-height: 1.6; }
.wf-review-decision textarea:focus { border-color: #70a0ef; box-shadow: 0 0 0 4px rgba(23,104,242,.08); }
.wf-decision-actions { display: flex; align-items: flex-end; gap: 8px; }

/* Public service detail */
.wf-public-main { padding: 32px 0 70px; }
.wf-breadcrumb { display: flex; gap: 7px; margin-bottom: 18px; color: #8392a5; font-size: 9px; }
.wf-breadcrumb a:hover { color: var(--wf-blue); }
.wf-public-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 20px; }
.wf-public-article { padding: 31px; }
.wf-public-tag { min-height: 27px; display: inline-flex; align-items: center; padding: 0 10px; border-radius: 8px; background: #eaf2ff; color: var(--wf-blue); font-size: 9px; font-weight: 900; }
.wf-public-article h1 { margin: 16px 0 13px; font-size: clamp(24px, 3vw, 36px); line-height: 1.35; letter-spacing: -.8px; }
.wf-public-meta { display: flex; flex-wrap: wrap; gap: 15px; padding-bottom: 22px; border-bottom: 1px solid #e2e9f2; color: #8998aa; font-size: 9px; }
.wf-public-summary { margin: 23px 0; padding: 16px 18px; border-left: 3px solid var(--wf-blue); border-radius: 0 12px 12px 0; background: #f2f7ff; color: #4a617d; font-size: 11px; line-height: 1.8; }
.wf-public-attrs { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1px; overflow:hidden; margin:0 0 22px; border:1px solid #e0e8f3; border-radius:13px; background:#e0e8f3; }
.wf-public-attrs article { min-width:0; padding:13px 14px; background:#fff; }
.wf-public-attrs span,.wf-public-attrs b { display:block; }
.wf-public-attrs span { color:#8998ab; font-size:8px; }
.wf-public-attrs b { margin-top:6px; overflow:hidden; color:#344d6c; font-size:10px; text-overflow:ellipsis; white-space:nowrap; }
.wf-public-content { color: #3d526c; font-size: 12px; line-height: 2; }
.wf-public-content p { margin:0 0 16px; }
.wf-public-content p:last-child { margin-bottom:0; }
.wf-public-disclaimer { margin-top: 28px; padding: 16px; border-radius: 12px; background: #f7f8fa; color: #77879b; font-size: 9px; line-height: 1.75; }
.wf-public-side { display: grid; align-content: start; gap: 14px; }
.wf-provider-card { padding: 22px; }
.wf-provider-card-head { display: grid; grid-template-columns: 50px 1fr; align-items: center; gap: 12px; }
.wf-provider-card-head > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, var(--wf-blue), var(--wf-cyan)); color: #fff; font-size: 12px; font-weight: 900; }
.wf-provider-card-head b,
.wf-provider-card-head small { display: block; }
.wf-provider-card-head b { font-size: 12px; }
.wf-provider-card-head small { margin-top: 5px; color: var(--wf-green); font-size: 8px; }
.wf-provider-contact { display: grid; gap: 10px; margin-top: 17px; padding-top: 16px; border-top: 1px solid #e2e9f2; }
.wf-contact-row { display: flex; justify-content: space-between; gap: 15px; color: #7a8ba1; font-size: 9px; }
.wf-contact-row b { color: #3c536f; }
.wf-provider-contact .wf-btn { width: 100%; margin-top: 4px; }

.wf-footer { padding: 22px 0; border-top: 1px solid #dce5f0; background: #fff; color: #8190a4; font-size: 9px; }
.wf-footer-inner { display: flex; justify-content: space-between; gap: 20px; }

.wf-toast { position: fixed; right: 22px; bottom: 22px; z-index: 90; max-width: min(360px, calc(100vw - 32px)); padding: 13px 16px; border-radius: 11px; background: #102b54; color: #fff; box-shadow: 0 16px 40px rgba(7,29,68,.25); font-size: 10px; transform: translateY(20px); opacity: 0; pointer-events: none; transition: .25s ease; }
.wf-toast.is-visible { transform: none; opacity: 1; }
.wf-skip { position: fixed; top: 8px; left: 8px; z-index: 120; padding: 10px 14px; border-radius: 9px; background: #fff; color: var(--wf-blue); font-size: 11px; font-weight: 900; box-shadow: 0 10px 30px rgba(7,29,68,.2); transform: translateY(-160%); }
.wf-skip:focus { transform: none; }

.wf-page button:focus-visible,
.wf-page a:focus-visible,
.wf-page input:focus-visible,
.wf-page select:focus-visible,
.wf-page textarea:focus-visible { outline: 3px solid rgba(23,104,242,.24); outline-offset: 3px; }

@media (max-width: 980px) {
  .wf-header-nav { display: none; }
  .wf-status-hero,
  .wf-two-col,
  .wf-dashboard-grid,
  .wf-public-grid { grid-template-columns: 1fr; }
  .wf-status-number { max-width: 420px; }
  .wf-progress { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .wf-progress-step:nth-child(2)::after { display: none; }
  .wf-workspace { grid-template-columns: 80px minmax(0, 1fr); }
  .wf-sidebar { padding-right: 10px; padding-left: 10px; }
  .wf-provider-mini { display: block; padding: 7px; }
  .wf-provider-mini > span { margin: auto; }
  .wf-provider-mini > div,
  .wf-side-nav button span,
  .wf-sidebar-foot { display: none; }
  .wf-side-nav button { justify-content: center; padding: 0; }
  .wf-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wf-flow-list-four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .wf-container { width: calc(100% - 28px); max-width: 1180px; }
  .wf-header-inner { min-height: 62px; gap: 10px; }
  .wf-brand small { display: none; }
  .wf-header-actions .wf-btn-secondary { display: none; }
  .wf-main { padding: 26px 0 50px; }
  .wf-page-title { align-items: flex-start; flex-direction: column; }
  .wf-status-hero { gap: 22px; padding: 24px 20px; }
  .wf-status-copy h2 { font-size: 25px; }
  .wf-progress { grid-template-columns: 1fr; padding: 19px; }
  .wf-progress-step:not(:last-child)::after { top: 38px; bottom: -19px; left: 16px; width: 2px; height: auto; display: block; }
  .wf-status-lookup { grid-template-columns: 1fr; }
  .wf-status-lookup-actions { justify-content: stretch; }
  .wf-status-lookup-actions .wf-btn { flex: 1; }
  .wf-details,
  .wf-profile-grid,
  .wf-review-materials { grid-template-columns: 1fr; }
  .wf-detail.full,
  .wf-field.full { grid-column: auto; }
  .wf-section-card { padding: 19px; }
  .wf-footer-inner { flex-direction: column; }
  .wf-workspace { display: block; }
  .wf-sidebar { position: sticky; top: 62px; z-index: 30; width: 100%; height: auto; display: block; padding: 8px 14px; overflow-x: auto; border-right: 0; border-bottom: 1px solid #dfe7f1; }
  .wf-provider-mini,
  .wf-sidebar-foot { display: none; }
  .wf-side-nav { width: max-content; display: flex; }
  .wf-side-nav button { min-width: 48px; padding: 0 13px; }
  .wf-side-nav button span { display: inline; }
  .wf-workspace-main { padding: 24px 14px 50px; }
  .wf-workspace-heading { flex-direction: column; }
  .wf-stat-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .wf-stat { min-height: 106px; padding: 14px; }
  .wf-flow-list { grid-template-columns: 1fr; }
  .wf-service-card { grid-template-columns: 1fr; padding: 17px; }
  .wf-service-actions { justify-content: flex-start; flex-wrap: wrap; }
  .wf-review-hero,
  .wf-review-card-top { align-items: flex-start; flex-direction: column; }
  .wf-review-decision { grid-template-columns: 1fr; }
  .wf-decision-actions { align-items: center; }
  .wf-dialog-head,
  .wf-dialog-body,
  .wf-dialog-foot { padding-right: 18px; padding-left: 18px; }
  .wf-dialog-foot { align-items: flex-start; flex-direction: column; }
  .wf-dialog-foot > div { width: 100%; }
  .wf-dialog-foot .wf-btn { flex: 1; }
  .wf-public-article { padding: 22px 18px; }
}

@media (max-width: 520px) {
  .wf-stat-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wf-page *,
  .wf-page *::before,
  .wf-page *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Public directory */
.wf-directory-hero { position: relative; overflow: hidden; padding: 50px clamp(22px,6vw,70px); border-radius: 24px; background: linear-gradient(135deg,#071a38,#123d78); color:#fff; box-shadow:var(--wf-shadow); }
.wf-directory-hero::after { content:""; position:absolute; width:340px; height:340px; right:-100px; top:-160px; border:1px solid rgba(255,255,255,.12); border-radius:50%; box-shadow:0 0 0 55px rgba(255,255,255,.035),0 0 0 110px rgba(255,255,255,.025); }
.wf-directory-hero > span,.wf-provider-hero > div > span,.wf-legal > span,.wf-recover > span { color:#63d5f1; font-size:9px; font-weight:900; letter-spacing:1.5px; }
.wf-directory-hero h1 { position:relative; z-index:1; margin:12px 0 8px; font-size:clamp(28px,4vw,46px); }
.wf-directory-hero > p { position:relative; z-index:1; margin:0 0 24px; color:#bbcae0; font-size:11px; }
.wf-search-box { position:relative; z-index:2; max-width:750px; min-height:58px; display:grid; grid-template-columns:28px 1fr auto; align-items:center; gap:8px; padding:7px; border-radius:15px; background:#fff; box-shadow:0 15px 40px rgba(0,0,0,.2); }
.wf-search-box svg { width:19px; margin-left:6px; fill:none; stroke:#6f839f; stroke-width:2; }
.wf-search-box input { min-width:0; border:0; outline:0; color:#253e5e; font-size:12px; }
.wf-search-box button { min-height:44px; padding:0 22px; border:0; border-radius:10px; background:var(--wf-blue); color:#fff; cursor:pointer; font-size:11px; font-weight:900; }
.wf-hot-search { position:relative; z-index:2; display:flex; flex-wrap:wrap; align-items:center; gap:7px; margin-top:14px; color:#94aaca; font-size:9px; }
.wf-hot-search button { padding:0; border:0; background:none; color:#d6e8ff; cursor:pointer; font-size:9px; }
.wf-directory-tools { display:flex; align-items:center; justify-content:space-between; gap:20px; margin:25px 0 10px; }
.wf-directory-tools .wf-filter-row { margin:0; }
.wf-directory-tools > label { display:flex; align-items:center; gap:8px; color:var(--wf-muted); font-size:9px; }
.wf-mobile-category { display:none!important; }
.wf-directory-tools select,.wf-review-tools select,.wf-review-tools input { min-height:44px; padding:0 12px; border:1px solid #d8e2ee; border-radius:9px; background:#fff; color:#526983; outline:0; font-size:10px; }
.wf-directory-summary { display:flex; justify-content:space-between; gap:20px; margin-bottom:14px; color:#8292a7; font-size:9px; }
.wf-directory-summary b { color:#405671; }
.wf-directory-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:15px; }
.wf-directory-card { overflow:hidden; transition:transform .2s ease,box-shadow .2s ease; }
.wf-directory-card:hover { transform:translateY(-3px); box-shadow:0 20px 45px rgba(20,57,112,.13); }
.wf-card-cover { min-height:125px; display:flex; align-items:flex-start; justify-content:space-between; padding:17px; background:linear-gradient(145deg,#e9f2ff,#f4fbff); }
.wf-card-cover span { padding:6px 9px; border-radius:7px; background:#fff; color:var(--wf-blue); font-size:8px; font-weight:900; }
.wf-card-cover i { width:44px; height:44px; display:grid; place-items:center; align-self:flex-end; border-radius:14px; background:linear-gradient(135deg,var(--wf-blue),var(--wf-cyan)); color:#fff; font-style:normal; font-size:10px; font-weight:900; }
.wf-directory-card-body { padding:18px; }
.wf-directory-card-meta { display:flex; justify-content:space-between; gap:12px; color:#93a0b1; font-size:8px; }
.wf-directory-card h2 { margin:10px 0 8px; font-size:14px; line-height:1.5; }
.wf-directory-card h2 a:hover { color:var(--wf-blue); }
.wf-directory-card p { display:-webkit-box; min-height:48px; margin:0; overflow:hidden; color:#71839b; font-size:9px; line-height:1.7; -webkit-box-orient:vertical; -webkit-line-clamp:3; }
.wf-provider-link { display:flex; align-items:center; gap:9px; margin-top:15px; padding-top:14px; border-top:1px solid #e7edf5; }
.wf-provider-link > i { width:32px; height:32px; display:grid; place-items:center; border-radius:9px; background:#eaf2ff; color:var(--wf-blue); font-style:normal; font-size:8px; font-weight:900; }
.wf-provider-link b,.wf-provider-link small { display:block; }
.wf-provider-link b { color:#455a74; font-size:9px; }.wf-provider-link small { margin-top:3px; color:#91a0b2; font-size:7px; }
.wf-directory-empty { grid-column:1/-1; }.wf-pagination { display:flex; justify-content:center; gap:7px; margin-top:24px; }
.wf-pagination button { width:44px; height:44px; border:1px solid #d7e1ed; border-radius:10px; background:#fff; color:#647790; cursor:pointer; font-size:10px; font-weight:900; }.wf-pagination button.is-active { border-color:transparent; background:var(--wf-blue); color:#fff; }

/* Provider, legal and recovery */
.wf-provider-hero { display:grid; grid-template-columns:82px minmax(0,1fr) auto; align-items:center; gap:22px; padding:28px; }
.wf-provider-avatar { width:82px; height:82px; display:grid; place-items:center; border-radius:22px; background:linear-gradient(135deg,var(--wf-blue),var(--wf-cyan)); color:#fff; font-size:18px; font-weight:900; }
.wf-provider-hero h1 { margin:7px 0; font-size:25px; }.wf-provider-hero h1 i { padding:5px 8px; border-radius:7px; background:#e6f8f1; color:var(--wf-green); font-size:8px; font-style:normal; vertical-align:middle; }
.wf-provider-hero p { max-width:720px; margin:0; color:#657993; font-size:10px; line-height:1.75; }.wf-provider-hero > div > div { display:flex; flex-wrap:wrap; gap:15px; margin-top:11px; color:#8999ac; font-size:8px; }
.wf-provider-content { margin-top:25px; }.wf-related { margin-top:28px; }.wf-related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:13px; }
.wf-related-grid a { min-height:145px; display:block; padding:18px; }.wf-related-grid span,.wf-related-grid b,.wf-related-grid small { display:block; }.wf-related-grid span { color:var(--wf-blue); font-size:8px; font-weight:900; }.wf-related-grid b { margin:10px 0 8px; color:#344b68; font-size:11px; line-height:1.55; }.wf-related-grid small { color:#7e8fa5; font-size:8px; line-height:1.6; }
.wf-delivery { color:#38516f; font-size:13px; }
.wf-public-tips { display:grid; gap:10px; margin:0; padding:0; list-style:none; color:#637890; font-size:10px; line-height:1.65; }
.wf-public-tips li { position:relative; padding-left:16px; }
.wf-public-tips li::before { content:""; position:absolute; left:0; top:.75em; width:6px; height:6px; border-radius:50%; background:var(--wf-blue); box-shadow:0 0 0 4px rgba(23,104,242,.08); }
.wf-legal,.wf-recover { width:min(820px,calc(100% - 28px)); margin:0 auto; padding:clamp(24px,5vw,54px); }.wf-legal > span,.wf-recover > span { color:var(--wf-blue); }.wf-legal h1,.wf-recover h1 { margin:10px 0; font-size:clamp(26px,4vw,38px); }.wf-legal-lead,.wf-recover > p { margin:0 0 28px; color:#74869e; font-size:11px; line-height:1.8; }.wf-legal h2 { margin:27px 0 8px; font-size:15px; }.wf-legal p { color:#536982; font-size:10px; line-height:1.9; }.wf-legal-note { margin-top:30px; padding:16px; border-radius:11px; background:#fff6e8; color:#916018; font-size:9px; line-height:1.7; }
.wf-recover form { display:grid; gap:17px; }.wf-recover aside { margin-top:24px; padding-top:18px; border-top:1px solid #e1e9f2; color:#7b8ca1; font-size:9px; }.wf-recover a { color:var(--wf-blue); }.wf-mini-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin:20px 0 24px; }.wf-mini-steps b { padding:12px; border-radius:9px; background:#f0f3f7; color:#8593a5; font-size:9px; }.wf-mini-steps b.is-active { background:#e9f2ff; color:var(--wf-blue); }.wf-form-result { margin:0; }.wf-form-result b,.wf-form-result span { display:block; }.wf-form-result.is-success { padding:13px; border-radius:10px; background:#e9f8f2; color:#187a5f; font-size:9px; }.wf-form-result span { margin-top:5px; line-height:1.6; }

/* Messages and support */
.wf-unread { display:inline-grid; min-width:18px; height:18px; place-items:center; margin-left:5px; border-radius:99px; background:var(--wf-red); color:#fff; font-size:7px; font-style:normal; }.wf-unread[hidden]{display:none;}
.wf-message-list { display:grid; }.wf-message { display:grid; grid-template-columns:10px minmax(0,1fr) auto; align-items:center; gap:13px; padding:15px 4px; border-bottom:1px solid #e5ecf4; }.wf-message:last-child{border-bottom:0}.wf-message > i { width:8px;height:8px;border-radius:50%;background:#cbd5e1}.wf-message.is-unread > i{background:var(--wf-blue);box-shadow:0 0 0 4px rgba(23,104,242,.1)}.wf-message b,.wf-message small{display:block}.wf-message b{font-size:10px}.wf-message p{margin:5px 0;color:#70839b;font-size:9px}.wf-message small{color:#9aa7b7;font-size:8px}.wf-message>a{color:var(--wf-blue);font-size:9px;font-weight:900}
.wf-support-grid { display:grid; grid-template-columns:minmax(0,1.3fr) minmax(280px,.7fr); gap:16px; }.wf-account-panel{padding:24px}.wf-account-panel h2{margin:0 0 15px;font-size:17px}.wf-account-panel a,.wf-account-panel button{width:100%;display:block;padding:14px 0;border:0;border-bottom:1px solid #e4ebf3;background:none;color:inherit;cursor:pointer;text-align:left}.wf-account-panel b,.wf-account-panel span{display:block}.wf-account-panel b{color:#3d536e;font-size:10px}.wf-account-panel span{margin-top:4px;color:#8796a9;font-size:8px}.wf-account-panel p{margin:18px 0 0;color:#8a99ab;font-size:8px;line-height:1.7}.wf-version-live{color:var(--wf-green)!important;font-size:8px!important}.wf-dialog-foot a{color:var(--wf-blue);text-decoration:underline}.wf-review-tools{display:grid;grid-template-columns:minmax(220px,1fr) 160px auto;align-items:center;gap:10px;margin-bottom:14px}.wf-review-tools span{color:#8292a6;font-size:9px}

@media(max-width:980px){.wf-directory-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.wf-support-grid{grid-template-columns:1fr}}
@media(max-width:680px){.wf-directory-hero{padding:32px 20px}.wf-search-box{grid-template-columns:25px 1fr}.wf-search-box button{grid-column:1/-1;width:100%}.wf-directory-tools,.wf-directory-summary{width:calc(100vw - 28px);max-width:calc(100vw - 28px);align-items:flex-start;flex-direction:column}.wf-directory-tools{overflow:hidden}.wf-directory-tools .wf-filter-row{display:none}.wf-mobile-category{display:flex!important}.wf-directory-grid,.wf-related-grid{grid-template-columns:1fr}.wf-provider-hero{grid-template-columns:62px 1fr}.wf-provider-avatar{width:62px;height:62px;border-radius:17px}.wf-provider-hero>.wf-btn{grid-column:1/-1;width:100%}.wf-review-tools{grid-template-columns:1fr}.wf-mini-steps{grid-template-columns:1fr}.wf-dialog-foot>div{flex-wrap:wrap}.wf-legal,.wf-recover{width:calc(100% - 28px);max-width:820px}}

/* Verified information publishing directory */
.wf-market-hero,.wf-merchant-hero { padding: 48px 0 50px; border-bottom: 3px solid #45bcef; background: radial-gradient(circle at 85% 20%, rgba(85,205,255,.24), transparent 28%), linear-gradient(120deg,#edf4ff,#dff3ff); }
.wf-market-hero .wf-breadcrumb,.wf-merchant-hero .wf-breadcrumb { margin-bottom: 21px; }
.wf-market-hero .wf-container > span,.wf-merchant-hero .wf-container > span { color: var(--wf-blue); font-size: 10px; font-weight: 900; letter-spacing: 1.4px; }
.wf-market-hero h1,.wf-merchant-hero h1 { margin: 9px 0 10px; font-size: clamp(31px,4vw,45px); letter-spacing: -1.3px; }
.wf-market-hero p,.wf-merchant-hero p { margin: 0; color: #536d8e; font-size: 14px; line-height: 1.75; }
.wf-market-category { border-bottom: 1px solid #dae5f2; background: #fff; }
.wf-market-category > .wf-container { min-height: 79px; display: flex; align-items: center; gap: 19px; }
.wf-market-category > .wf-container > span { color: #71849e; font-size: 13px; font-weight: 800; }
.wf-market-category .wf-filter-row { margin: 0; }
.wf-market-content { padding-top: 34px; padding-bottom: 62px; }
.wf-market-toolbar { min-height: 76px; display: grid; grid-template-columns: auto minmax(260px,1fr) auto; align-items: center; gap: 20px; margin-bottom: 20px; padding: 13px 16px 13px 20px; border: 1px solid #d8e3f0; border-left: 3px solid var(--wf-blue); border-radius: 15px; background: #fff; }
.wf-market-toolbar > div { display: flex; align-items: baseline; gap: 5px; white-space: nowrap; }
.wf-market-toolbar > div b { color: var(--wf-blue); font-size: 21px; }.wf-market-toolbar > div span { color: #5d728e; font-size: 12px; }
.wf-market-toolbar form { width: 100%; max-width: 520px; justify-self: end; }
.wf-market-toolbar form label,.wf-merchant-search label { min-height: 48px; display: grid; grid-template-columns: 24px minmax(0,1fr) auto; align-items: center; gap: 7px; padding: 4px; border: 1px solid #d4e0ed; border-radius: 11px; background: #f9fbfe; }
.wf-market-toolbar svg,.wf-merchant-search svg { width: 18px; margin-left: 7px; fill: none; stroke: #8294aa; stroke-width: 2; }
.wf-market-toolbar input,.wf-merchant-search input { min-width: 0; border: 0; outline: 0; background: transparent; color: #314965; font-size: 12px; }
.wf-market-toolbar form button,.wf-merchant-search button { min-height: 40px; padding: 0 19px; border: 0; border-radius: 9px; background: linear-gradient(135deg,var(--wf-blue-deep),var(--wf-cyan)); color: #fff; cursor: pointer; font-size: 11px; font-weight: 900; }
.wf-market-sort { display: flex; align-items: center; gap: 7px; color: #70839b; font-size: 10px; }.wf-market-sort select { min-height: 44px; padding: 0 10px; border: 1px solid #d5e0ed; border-radius: 9px; background: #fff; color: #425a75; }
.wf-market-layout { display: grid; grid-template-columns: minmax(0,1fr) 292px; align-items: start; gap: 20px; }
.wf-market-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.wf-market-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }.wf-market-card:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(20,57,112,.14); }
.wf-market-cover { position: relative; min-height: 190px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 25px 28px; color: #fff!important; }
.wf-market-cover::before,.wf-market-cover::after { content:""; position:absolute; border:1px solid rgba(255,255,255,.18); border-radius:50%; }.wf-market-cover::before { width:190px; height:190px; right:-55px; top:-80px; }.wf-market-cover::after { width:105px; height:105px; right:38px; bottom:-53px; }
.wf-market-cover > span { position:absolute; top:14px; left:14px; z-index:1; padding:6px 9px; border-radius:7px; background:rgba(255,255,255,.94); color:var(--wf-blue); font-size:9px; font-weight:900; }
.wf-market-cover small,.wf-market-cover strong,.wf-market-cover i { position:relative; z-index:1; display:block; }.wf-market-cover small { color:rgba(255,255,255,.72); font-size:9px; font-weight:800; letter-spacing:1.1px; }.wf-market-cover strong { margin-top:9px; font-size:24px; line-height:1.28; letter-spacing:.5px; }.wf-market-cover i { width:max-content; margin-top:13px; padding:5px 8px; border:1px solid rgba(255,255,255,.3); border-radius:6px; color:#fff; font-size:9px; font-style:normal; }
.wf-cover-blue { background:linear-gradient(145deg,#07295d,#1674ed); }.wf-cover-cyan { background:linear-gradient(145deg,#075c7c,#12b7da); }.wf-cover-violet { background:linear-gradient(145deg,#30156c,#7a46dc); }.wf-cover-indigo { background:linear-gradient(145deg,#102c71,#405fd2); }.wf-cover-orange { background:linear-gradient(145deg,#9c4510,#ed8a1a); }.wf-cover-teal { background:linear-gradient(145deg,#075e62,#13a89b); }.wf-cover-rose { background:linear-gradient(145deg,#7d2146,#d3517c); }
.wf-market-card-body { padding: 19px 20px 18px; }.wf-market-card-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:10px; }.wf-market-card-tags span { padding:5px 8px; border-radius:7px; background:#eef5ff; color:var(--wf-blue); font-size:8px; font-weight:900; }.wf-market-card-tags span:nth-child(2) { background:#e9f8f2; color:var(--wf-green); }.wf-market-card-body h2 { margin:0 0 9px; font-size:16px; line-height:1.55; }.wf-market-card-body h2 a:hover { color:var(--wf-blue); }.wf-market-card-body > p { min-height:66px; display:-webkit-box; margin:0; overflow:hidden; color:#627690; font-size:12px; line-height:1.8; -webkit-box-orient:vertical; -webkit-line-clamp:3; }
.wf-market-card-foot { display:flex; align-items:center; gap:11px; margin-top:16px; padding-top:14px; border-top:1px dashed #d9e3ef; color:#8a99ab; font-size:9px; }.wf-market-card-foot > a { display:flex; align-items:center; gap:6px; margin-right:auto; }.wf-market-card-foot > a > i { width:25px; height:25px; display:grid; place-items:center; border-radius:50%; background:#e7f1ff; color:var(--wf-blue); font-style:normal; font-weight:900; }.wf-market-card-foot > a b { color:#48607d; }.wf-market-card-foot > a em { padding:3px 5px; border-radius:5px; background:#e9f8f2; color:var(--wf-green); font-size:7px; font-style:normal; font-weight:900; }
.wf-market-side { display:grid; gap:15px; }.wf-trust-panel,.wf-ranking { padding:20px; box-shadow:none; }.wf-side-title { display:flex; align-items:center; gap:9px; margin-bottom:14px; padding-bottom:13px; border-bottom:1px solid #dfe7f1; }.wf-side-title > span { width:3px; height:17px; border-radius:99px; background:var(--wf-blue); }.wf-side-title h2 { margin:0; font-size:14px; }
.wf-trust-listing { display:grid; }.wf-trust-listing article { display:grid; grid-template-columns:36px 1fr; align-items:center; gap:10px; padding:11px 0; border-bottom:1px dashed #e0e8f1; }.wf-trust-listing article:last-child { border-bottom:0; }.wf-trust-listing i { width:36px; height:36px; display:grid; place-items:center; border-radius:9px; background:#eaf2ff; color:var(--wf-blue); font-size:9px; font-style:normal; font-weight:900; }.wf-trust-listing b,.wf-trust-listing small { display:block; }.wf-trust-listing b { color:#3e5672; font-size:11px; }.wf-trust-listing small { margin-top:4px; color:#8b9aad; font-size:8px; }
.wf-ranking > div { display:grid; }.wf-ranking a { min-width:0; display:grid; grid-template-columns:25px minmax(0,1fr); align-items:center; gap:9px; padding:9px 0; border-bottom:1px dashed #e0e8f1; }.wf-ranking a:last-child { border-bottom:0; }.wf-ranking a > i { width:25px; height:25px; display:grid; place-items:center; border-radius:7px; background:#eaf2ff; color:var(--wf-blue); font-size:8px; font-style:normal; font-weight:900; }.wf-ranking a b,.wf-ranking a small { display:block; }.wf-ranking a b { overflow:hidden; color:#405773; font-size:9px; text-overflow:ellipsis; white-space:nowrap; }.wf-ranking a small { margin-top:3px; color:#9aa6b5; font-size:7px; }
.wf-side-more { min-height:38px; display:flex; align-items:center; justify-content:center; margin-top:12px; border:1px solid #d7e2ef; border-radius:9px; color:var(--wf-blue)!important; font-size:9px; font-weight:900; }
.wf-market-empty { grid-column:1/-1; }

/* Verified provider directory */
.wf-merchant-stats { max-width:760px; display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:28px; }.wf-merchant-stats article { padding:17px 18px; border:1px solid rgba(208,222,239,.9); border-radius:13px; background:rgba(255,255,255,.88); }.wf-merchant-stats b,.wf-merchant-stats span { display:block; }.wf-merchant-stats b { color:var(--wf-blue); font-size:25px; }.wf-merchant-stats span { margin-top:5px; color:#6f829b; font-size:9px; }
.wf-merchants-content { padding-top:45px; padding-bottom:62px; }.wf-merchant-search { width:min(640px,100%); margin:0 auto 34px; }.wf-merchant-search label { min-height:58px; grid-template-columns:28px minmax(0,1fr) auto; padding:6px; background:#fff; box-shadow:0 15px 35px rgba(20,57,112,.08); }.wf-merchant-search button { min-height:44px; padding:0 25px; }
.wf-merchant-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }.wf-merchant-card { position:relative; overflow:hidden; padding:0 25px 24px; text-align:center; }.wf-merchant-card-cover { height:108px; margin:0 -25px; background:linear-gradient(120deg,#0a456e,#19399a); }.wf-merchant-card-cover::after { content:""; display:block; width:100%; height:100%; opacity:.14; background-image:linear-gradient(rgba(255,255,255,.3) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.3) 1px,transparent 1px); background-size:30px 30px; }
.wf-merchant-avatar { width:84px; height:84px; display:grid; place-items:center; margin:-46px auto 15px; border:4px solid #fff; border-radius:50%; color:#fff; box-shadow:0 0 0 3px var(--wf-blue),0 12px 25px rgba(17,64,132,.18); font-size:25px; font-weight:900; }.wf-avatar-green{background:#22bd7b}.wf-avatar-violet{background:#8d45c7}.wf-avatar-orange{background:#f39a13}.wf-avatar-blue{background:#2684df}.wf-avatar-rose{background:#d64e79}
.wf-merchant-card h2 { margin:0 0 8px; font-size:18px; }.wf-verified-pill { display:inline-flex; align-items:center; gap:5px; padding:5px 8px; border:1px solid #8ddfff; border-radius:7px; background:#eaf9ff; color:#1186bd; font-size:8px; font-weight:900; }.wf-verified-pill i { font-style:normal; }
.wf-merchant-card > p { min-height:82px; margin:16px 0; color:#61758f; font-size:11px; line-height:1.8; text-align:left; }.wf-merchant-count { padding:14px 0; border-top:1px dashed #dce5ef; border-bottom:1px dashed #dce5ef; }.wf-merchant-count b,.wf-merchant-count span { display:block; }.wf-merchant-count b { color:var(--wf-blue); font-size:22px; }.wf-merchant-count span { color:#8595aa; font-size:8px; }.wf-merchant-contact { display:flex; justify-content:space-between; gap:10px; margin:14px 0; color:#7c8da2; font-size:8px; }.wf-merchant-contact b { color:#536a84; }.wf-merchant-contact-list { display:grid; gap:1px; overflow:hidden; margin:14px 0; border:1px solid #e0e8f2; border-radius:12px; background:#e0e8f2; text-align:left; }.wf-merchant-contact-list div { display:grid; grid-template-columns:72px minmax(0,1fr); gap:10px; padding:10px 12px; background:#fff; }.wf-merchant-contact-list dt,.wf-merchant-contact-list dd { margin:0; min-width:0; }.wf-merchant-contact-list dt { color:#8493a6; font-size:8px; }.wf-merchant-contact-list dd { overflow:hidden; color:#405671; font-size:9px; font-weight:900; text-overflow:ellipsis; white-space:nowrap; }.wf-merchant-card > .wf-btn { width:100%; }.wf-merchant-empty { grid-column:1/-1; }
.wf-provider-facts { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; margin-top:14px; overflow:hidden; background:#dfe8f2; box-shadow:none; }.wf-provider-facts article { padding:18px 20px; background:#fff; }.wf-provider-facts span,.wf-provider-facts b { display:block; }.wf-provider-facts span { color:#8796a9; font-size:9px; }.wf-provider-facts b { margin-top:6px; color:#405772; font-size:11px; }
.wf-detail-cover img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.wf-detail-cover:has(img)::after { display:none; }
.wf-merchant-hero.wf-merchant-hero-strip { height:60px; padding:0; }
.wf-merchants-content { padding-top:56px; }
.wf-merchant-grid { gap:28px; }
.wf-merchant-card { min-height:530px; border:1px solid #d8e5f3; border-radius:15px; box-shadow:0 14px 38px rgba(18,58,112,.06); transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.wf-merchant-card::before { content:""; position:absolute; top:0; left:50%; width:96px; height:3px; border-radius:999px; background:transparent; transform:translateX(-50%); transition:background .2s ease; z-index:2; }
.wf-merchant-card:hover { border-color:#19aef0; box-shadow:0 28px 60px rgba(29,105,182,.15); transform:translateY(-2px); }
.wf-merchant-card:hover::before { background:#22c3f4; }
.wf-merchant-card-cover { height:110px; background:linear-gradient(115deg,#0e4d74 0%,#203f9b 100%); }
.wf-merchant-avatar { width:88px; height:88px; margin-top:-44px; font-size:27px; box-shadow:0 0 0 4px #2296ff,0 12px 30px rgba(19,116,210,.24); }
.wf-merchant-card h2 { margin-top:2px; color:#071d35; font-size:18px; font-weight:900; }
.wf-verified-pill { padding:5px 10px; border-radius:6px; }
.wf-merchant-card > p { min-height:88px; margin:18px 0 17px; color:#435b78; font-size:12px; line-height:1.85; }
.wf-merchant-count { margin-top:0; padding:15px 0 16px; }
.wf-merchant-count b { display:flex; align-items:baseline; justify-content:center; gap:2px; color:#167de6; font-size:24px; line-height:1; }
.wf-merchant-count b em { font-size:12px; font-style:normal; }
.wf-merchant-count span { margin-top:5px; color:#8292a7; font-size:10px; }
.wf-merchant-phone { min-height:52px; display:flex; align-items:center; justify-content:center; gap:8px; border-bottom:1px dashed #dce5ef; color:#4a617e; font-size:11px; }
.wf-merchant-phone span { color:#159be8; font-size:14px; line-height:1; }
.wf-merchant-phone b { font-weight:600; }
.wf-merchant-card > .wf-btn { min-height:36px; justify-content:center; margin-top:18px; border-radius:999px; color:#0872dc; font-size:11px; font-weight:900; }
.wf-detail-cover { position:relative; min-height:220px; display:flex; flex-direction:column; justify-content:center; overflow:hidden; margin:-31px -31px 26px; padding:30px 38px; color:#fff; }.wf-detail-cover::after { content:""; position:absolute; width:260px; height:260px; right:-70px; top:-95px; border:1px solid rgba(255,255,255,.2); border-radius:50%; box-shadow:0 0 0 45px rgba(255,255,255,.04); }.wf-detail-cover small,.wf-detail-cover strong,.wf-detail-cover i { position:relative; z-index:1; display:block; }.wf-detail-cover small { color:rgba(255,255,255,.75); font-size:10px; font-weight:800; letter-spacing:1.2px; }.wf-detail-cover strong { margin-top:10px; font-size:31px; line-height:1.25; }.wf-detail-cover i { width:max-content; margin-top:15px; padding:5px 9px; border:1px solid rgba(255,255,255,.35); border-radius:7px; font-size:9px; font-style:normal; }.wf-review-label { display:inline-flex; margin-left:7px; padding:7px 9px; border-radius:8px; background:#e9f8f2; color:var(--wf-green); font-size:8px; font-weight:900; }

@media(max-width:1020px){.wf-market-layout{grid-template-columns:1fr}.wf-market-side{grid-template-columns:repeat(3,1fr)}.wf-merchant-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.wf-market-hero,.wf-merchant-hero{padding:32px 0}.wf-market-category>.wf-container{min-height:68px}.wf-market-category>.wf-container>span,.wf-market-category .wf-filter-row{display:none}.wf-market-category .wf-mobile-category{display:flex!important;align-items:center;gap:8px;color:#5f728c;font-size:11px}.wf-market-category select{min-height:44px;padding:0 12px;border:1px solid #d5e0ed;border-radius:9px;background:#fff}.wf-market-toolbar{grid-template-columns:1fr}.wf-market-toolbar form{max-width:none;justify-self:stretch}.wf-market-sort{justify-content:space-between}.wf-market-grid{grid-template-columns:1fr}.wf-market-cover{min-height:175px}.wf-market-side{grid-template-columns:1fr}.wf-market-card-foot{flex-wrap:wrap}.wf-market-card-foot>a{width:100%}.wf-merchant-stats{grid-template-columns:repeat(2,1fr)}.wf-merchant-grid{grid-template-columns:1fr}.wf-merchant-search label{grid-template-columns:24px minmax(0,1fr)}.wf-merchant-search button{grid-column:1/-1;width:100%}.wf-merchant-card>p{min-height:0}.wf-provider-facts,.wf-public-attrs{grid-template-columns:1fr}.wf-detail-cover{min-height:185px;margin:-22px -18px 22px;padding:25px 22px}.wf-detail-cover strong{font-size:25px}}

/* Policy center */
.wf-policy-page { background: #f3f7fc; }
.wf-skip-link { position: fixed; top: 8px; left: 12px; z-index: 100; padding: 11px 15px; border-radius: 9px; background: #fff; color: var(--wf-blue)!important; box-shadow: 0 12px 30px rgba(7,29,68,.22); font-size: 13px; font-weight: 800; transform: translateY(-150%); transition: transform .2s ease; }
.wf-skip-link:focus { transform: none; }
.wf-policy-hero { position: relative; overflow: hidden; padding: 64px 0 96px; background: radial-gradient(circle at 86% 15%, rgba(22,189,233,.22), transparent 25%), linear-gradient(125deg,#071a38 0%,#0b3476 56%,#1454b5 100%); color: #fff; }
.wf-policy-hero::before,.wf-policy-hero::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; pointer-events: none; }
.wf-policy-hero::before { width: 430px; height: 430px; right: -125px; top: -235px; box-shadow: 0 0 0 72px rgba(255,255,255,.025),0 0 0 144px rgba(255,255,255,.018); }
.wf-policy-hero::after { width: 190px; height: 190px; left: -115px; bottom: -120px; }
.wf-policy-hero-privacy { background: radial-gradient(circle at 84% 20%,rgba(39,211,190,.22),transparent 27%),linear-gradient(125deg,#071c34 0%,#0b3a68 54%,#087c8d 100%); }
.wf-policy-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(380px,.75fr); align-items: end; gap: 64px; }
.wf-policy-hero-inner > * { min-width: 0; }
.wf-policy-kicker { margin: 0 0 14px; color: #72dcf7; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; }
.wf-policy-hero h1 { margin: 0; font-size: clamp(38px,5vw,62px); line-height: 1.15; letter-spacing: -2px; }
.wf-policy-summary { max-width: 720px; margin: 22px 0 0; overflow-wrap: anywhere; color: #c9daf1; font-size: 16px; line-height: 1.85; }
.wf-policy-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 25px; color: #94b6df; font-size: 12px; }
.wf-policy-meta span { display: inline-flex; align-items: center; gap: 8px; }
.wf-policy-meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #3cd1ef; box-shadow: 0 0 0 4px rgba(60,209,239,.11); }
.wf-policy-flow { width: 100%; max-width: 100%; min-width: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(255,255,255,.08); box-shadow: 0 22px 50px rgba(0,0,0,.12); backdrop-filter: blur(12px); }
.wf-policy-flow span { min-width: 0; min-height: 54px; display: flex; align-items: center; gap: 9px; padding: 11px; border-radius: 12px; background: rgba(255,255,255,.08); color: #e7f4ff; font-size: 12px; font-weight: 700; }
.wf-policy-flow b { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 8px; background: linear-gradient(135deg,#397df4,#25c7e9); color: #fff; font-size: 9px; }
.wf-policy-flow i { display: none; }
.wf-privacy-key { padding: 27px; border: 1px solid rgba(255,255,255,.17); border-radius: 20px; background: rgba(255,255,255,.09); box-shadow: 0 22px 50px rgba(0,0,0,.12); backdrop-filter: blur(12px); }
.wf-privacy-key strong { display: block; color: #6cebd8; font-size: 13px; }
.wf-privacy-key p { margin: 12px 0 0; color: #d6e9ee; font-size: 14px; line-height: 1.85; }
.wf-policy-data-map { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); margin-top: -46px; overflow: hidden; border: 1px solid #d9e4f1; border-radius: 18px; background: #fff; box-shadow: 0 20px 50px rgba(20,57,112,.1); }
.wf-policy-data-map article { min-width: 0; padding: 23px 25px; border-right: 1px solid #e3eaf3; }
.wf-policy-data-map article:last-child { border-right: 0; }
.wf-policy-data-map span,.wf-policy-data-map b { display: block; }
.wf-policy-data-map span { color: var(--wf-blue); font-size: 11px; font-weight: 800; }
.wf-policy-data-map b { margin-top: 9px; color: #293f5d; font-size: 14px; line-height: 1.5; }
.wf-policy-data-map p { margin: 6px 0 0; color: #7b8ca3; font-size: 11px; line-height: 1.6; }
.wf-policy-layout { display: grid; grid-template-columns: minmax(0,820px) 270px; align-items: start; justify-content: center; gap: 32px; padding-top: 42px; padding-bottom: 70px; }
.wf-policy-layout-with-map { padding-top: 34px; }
.wf-policy-document { padding: clamp(28px,4vw,52px); border: 1px solid #dbe5f1; border-radius: 20px; background: #fff; box-shadow: 0 18px 46px rgba(20,57,112,.07); }
.wf-policy-intro { margin-bottom: 12px; padding: 23px 25px; border-left: 4px solid #16bde9; border-radius: 0 13px 13px 0; background: #eef8ff; }
.wf-policy-intro-blue { border-left-color: #0ba797; background: #effaf7; }
.wf-policy-intro strong { display: block; color: #21405f; font-size: 16px; }
.wf-policy-intro p { margin: 9px 0 0; color: #546b84; font-size: 14px; line-height: 1.9; }
.wf-policy-section { scroll-margin-top: 94px; display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 18px; padding: 34px 0; border-bottom: 1px solid #e4ebf3; transition: background .2s ease; }
.wf-policy-section:last-child { padding-bottom: 0; border-bottom: 0; }
.wf-policy-section:target { margin-right: -14px; margin-left: -14px; padding-right: 14px; padding-left: 14px; border-radius: 12px; background: #f7faff; }
.wf-policy-section > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #cfdeef; border-radius: 11px; background: #f5f9fe; color: var(--wf-blue); font-size: 11px; font-weight: 900; }
.wf-policy-section h2 { margin: 4px 0 14px; color: #152e4e; font-size: 21px; line-height: 1.45; }
.wf-policy-section h3 { margin: 22px 0 8px; color: #2f4968; font-size: 16px; }
.wf-policy-section p { margin: 10px 0 0; color: #4c627c; font-size: 15px; line-height: 2; }
.wf-policy-section ul { margin: 13px 0 0; padding-left: 21px; color: #4c627c; }
.wf-policy-section li { padding-left: 3px; font-size: 15px; line-height: 1.95; }
.wf-policy-section li::marker { color: var(--wf-blue); }
.wf-policy-boundary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.wf-policy-boundary > div { padding: 18px; border: 1px solid #d8e5f0; border-radius: 12px; background: #f8fbfe; }
.wf-policy-boundary > div:last-child { border-color: #d6e9e4; background: #f2faf8; }
.wf-policy-boundary b { color: #2463a1; font-size: 13px; }
.wf-policy-boundary > div:last-child b { color: #087f6c; }
.wf-policy-boundary p { margin-top: 6px; font-size: 13px; line-height: 1.75; }
.wf-policy-aside { position: sticky; top: 94px; display: grid; gap: 16px; }
.wf-policy-switch { display: grid; grid-template-columns: 1fr 1fr; padding: 5px; border: 1px solid #d8e3f0; border-radius: 12px; background: #fff; box-shadow: 0 10px 28px rgba(20,57,112,.06); }
.wf-policy-switch a { min-height: 42px; display: grid; place-items: center; border-radius: 9px; color: #6b7e96; font-size: 12px; font-weight: 800; transition: background .2s ease,color .2s ease; }
.wf-policy-switch a:hover { color: var(--wf-blue); }
.wf-policy-switch a.is-active { background: #eaf2ff; color: var(--wf-blue); }
.wf-policy-toc { display: grid; padding: 20px; border: 1px solid #dbe5f0; border-radius: 16px; background: #fff; box-shadow: 0 12px 32px rgba(20,57,112,.06); }
.wf-policy-toc strong { margin-bottom: 11px; color: #273f5e; font-size: 13px; }
.wf-policy-toc a { min-height: 38px; display: flex; align-items: center; padding: 0 10px; border-left: 2px solid #e1e8f1; color: #718299; font-size: 12px; transition: border-color .2s ease,background .2s ease,color .2s ease; }
.wf-policy-toc a:hover,.wf-policy-toc a:focus-visible { border-left-color: var(--wf-blue); background: #f5f9ff; color: var(--wf-blue); }
.wf-policy-side-note { padding: 20px; border-radius: 16px; background: linear-gradient(145deg,#0b2b5d,#125cc4); color: #fff; box-shadow: 0 16px 35px rgba(15,69,154,.16); }
.wf-policy-side-note span,.wf-policy-side-note b { display: block; }
.wf-policy-side-note span { margin-bottom: 13px; color: #7ddff6; font-size: 10px; font-weight: 800; letter-spacing: .8px; }
.wf-policy-side-note b { margin-top: 7px; font-size: 13px; }
.wf-policy-side-note b::before { content: ""; width: 5px; height: 5px; display: inline-block; margin-right: 8px; border-radius: 50%; background: #60e1f5; vertical-align: 2px; }
.wf-policy-side-note p { margin: 13px 0 0; color: #bdcee6; font-size: 11px; line-height: 1.7; }
.wf-policy-side-note-safe { background: linear-gradient(145deg,#073a48,#087f7b); }
.wf-policy-side-note-safe span { color: #79edda; }
.wf-policy-side-note-safe b::before { background: #75e8d1; }
.wf-policy-side-note-safe p { color: #c7e5df; }
.wf-policy-footer { padding: 30px 0; border-top: 1px solid #dce6f1; background: #081a35; color: #90a4c1; }
.wf-policy-footer > div { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.wf-policy-footer div > div b,.wf-policy-footer div > div span { display: block; }
.wf-policy-footer div > div b { color: #fff; font-size: 15px; }
.wf-policy-footer div > div span { margin-top: 5px; font-size: 10px; }
.wf-policy-footer nav { display: flex; gap: 22px; }
.wf-policy-footer nav a { min-height: 44px; display: inline-flex; align-items: center; font-size: 11px; transition: color .2s ease; }
.wf-policy-footer nav a:hover { color: #fff; }
.wf-policy-footer p { margin: 0; justify-self: end; font-size: 10px; }

@media (max-width: 980px) {
  .wf-policy-hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .wf-policy-flow,.wf-privacy-key { max-width: 620px; }
  .wf-policy-layout { grid-template-columns: minmax(0,1fr); }
  .wf-policy-aside { position: static; grid-row: 1; }
  .wf-policy-toc { display: flex; align-items: center; gap: 2px; overflow-x: auto; padding: 10px; scrollbar-width: thin; }
  .wf-policy-toc strong { flex: 0 0 auto; margin: 0 9px 0 5px; }
  .wf-policy-toc a { min-width: max-content; border-left: 0; border-bottom: 2px solid transparent; }
  .wf-policy-toc a:hover,.wf-policy-toc a:focus-visible { border-bottom-color: var(--wf-blue); }
  .wf-policy-side-note { display: none; }
  .wf-policy-data-map { grid-template-columns: 1fr 1fr; }
  .wf-policy-data-map article:nth-child(2) { border-right: 0; }
  .wf-policy-data-map article:nth-child(-n+2) { border-bottom: 1px solid #e3eaf3; }
}

@media (max-width: 680px) {
  .wf-policy-page .wf-header-actions .wf-btn-primary { padding: 0 14px; }
  .wf-policy-hero { padding: 44px 0 76px; }
  .wf-policy-hero h1 { font-size: 39px; letter-spacing: -1px; }
  .wf-policy-summary { font-size: 16px; line-height: 1.75; }
  .wf-policy-meta { display: grid; gap: 9px; }
  .wf-policy-flow { grid-template-columns: 1fr 1fr; gap: 8px; padding: 13px; }
  .wf-policy-flow i { display: none; }
  .wf-policy-flow span { min-height: 50px; }
  .wf-privacy-key { padding: 21px; }
  .wf-policy-data-map { grid-template-columns: 1fr; margin-top: -40px; }
  .wf-policy-data-map article { padding: 18px 20px; border-right: 0; border-bottom: 1px solid #e3eaf3; }
  .wf-policy-data-map article:nth-child(3) { border-bottom: 1px solid #e3eaf3; }
  .wf-policy-data-map article:last-child { border-bottom: 0; }
  .wf-policy-layout { gap: 17px; padding-top: 20px; padding-bottom: 46px; }
  .wf-policy-layout-with-map { padding-top: 20px; }
  .wf-policy-switch { position: sticky; top: 70px; z-index: 5; }
  .wf-policy-toc { margin-right: -14px; margin-left: -14px; border-right: 0; border-left: 0; border-radius: 0; }
  .wf-policy-document { padding: 24px 19px; border-radius: 16px; }
  .wf-policy-intro { padding: 19px; }
  .wf-policy-section { grid-template-columns: 1fr; gap: 11px; padding: 29px 0; scroll-margin-top: 130px; }
  .wf-policy-section > span { width: 34px; height: 34px; }
  .wf-policy-section h2 { margin-top: 0; font-size: 20px; }
  .wf-policy-section h3 { font-size: 17px; }
  .wf-policy-section p,.wf-policy-section li { font-size: 16px; line-height: 1.9; }
  .wf-policy-boundary { grid-template-columns: 1fr; }
  .wf-policy-footer > div { grid-template-columns: 1fr; gap: 14px; }
  .wf-policy-footer nav { flex-wrap: wrap; gap: 8px 19px; }
  .wf-policy-footer p { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wf-skip-link,.wf-policy-toc a,.wf-policy-switch a { transition: none; }
}
