:root {
    --wvc-bg: #f3f4f6;
    --wvc-bg-soft: #f7f8fa;
    --wvc-surface: #ffffff;
    --wvc-surface-soft: #fbfbfc;
    --wvc-line: #e5e7eb;
    --wvc-line-strong: #d7dce3;
    --wvc-text: #39424e;
    --wvc-text-soft: #616873;
    --wvc-muted: #8b9098;
    --wvc-brand: #2583ea;
    --wvc-brand-hover: #1f74d1;
    --wvc-brand-soft: #eef7ff;
    --wvc-brand-line: #9fd0ff;
    --wvc-success: #18a36b;
    --wvc-danger: #dc2626;
    --wvc-warning: #b7791f;
    --wvc-shadow: 0 20px 45px rgba(57, 66, 78, 0.08);
    --wvc-shadow-soft: 0 12px 26px rgba(57, 66, 78, 0.06);
    --wvc-focus-ring: 0 0 0 3px rgba(37, 131, 234, 0.18);
    --wvc-radius-xl: 28px;
    --wvc-radius-lg: 22px;
    --wvc-radius-md: 18px;
}

.wcc-form-shell {
    max-width: 1160px;
    margin: 32px auto;
    padding: 0 16px;
    color: var(--wvc-text);
    font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

.wcc-form-shell *,
.wcc-form-shell *::before,
.wcc-form-shell *::after {
    box-sizing: border-box;
}

.wcc-form-shell :where(a, button, input, textarea, select):focus-visible {
    outline: none;
    border-color: var(--wvc-brand-line);
    box-shadow: var(--wvc-focus-ring);
}

.wcc-form-hero,
.wcc-success-card,
.wcc-panel-lite,
.wcc-form {
    background: var(--wvc-surface);
    border: 1px solid var(--wvc-line);
    border-radius: var(--wvc-radius-xl);
    box-shadow: var(--wvc-shadow);
}

.wcc-form-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
    gap: 24px;
    align-items: center;
    padding: 30px;
    margin-bottom: 18px;
}

.wcc-eyebrow {
    color: var(--wvc-muted);
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.wcc-form-hero h2,
.wcc-success-card h2,
.wcc-panel-lite h2 {
    margin: 0 0 12px;
    color: var(--wvc-text);
    font-size: clamp(32px, 4vw, 46px);
    letter-spacing: -0.05em;
    line-height: 1.03;
}

.wcc-form-hero p,
.wcc-success-card p,
.wcc-panel-lite p {
    margin: 0;
    color: var(--wvc-text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.wcc-order-card {
    background: linear-gradient(135deg, var(--wvc-brand-soft) 0%, #ffffff 100%);
    border: 1px solid var(--wvc-brand-line);
    border-radius: 24px;
    padding: 22px;
}

.wcc-order-card span,
.wcc-order-card small {
    display: block;
    color: var(--wvc-text-soft);
}

.wcc-order-card strong {
    display: block;
    margin: 10px 0 8px;
    color: var(--wvc-text);
    font-size: 24px;
    line-height: 1.3;
}

.wcc-alert {
    margin: 18px 0;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid transparent;
}

.wcc-alert ul {
    margin: 10px 0 0 18px;
}

.wcc-alert.error {
    background: #fff4f4;
    border-color: rgba(220, 38, 38, 0.14);
    color: var(--wvc-danger);
}

.wcc-alert.warn {
    background: #fff8e8;
    border-color: rgba(183, 121, 31, 0.2);
    color: var(--wvc-warning);
}

.wcc-alert.success {
    background: rgba(24, 163, 107, 0.08);
    border-color: rgba(24, 163, 107, 0.16);
    color: var(--wvc-success);
}

.wcc-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.wcc-steps button {
    appearance: none;
    background: var(--wvc-surface-soft);
    border: 1px solid var(--wvc-line);
    border-radius: 999px;
    color: var(--wvc-text-soft);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    min-height: 46px;
    padding: 12px 16px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wcc-steps button.active {
    background: var(--wvc-brand-soft);
    border-color: var(--wvc-brand-line);
    color: var(--wvc-brand);
}

.wcc-form {
    padding: 28px;
}

.wcc-step {
    display: none;
}

.wcc-step.active {
    display: block;
}

.wcc-field-grid {
    display: grid;
    gap: 14px;
}

.wcc-field-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wvc-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wvc-field span {
    color: var(--wvc-text);
    font-size: 14px;
    font-weight: 700;
}

.wvc-field input,
.wvc-field textarea,
.wvc-field select {
    width: 100%;
    border: 1px solid var(--wvc-line);
    border-radius: 16px;
    padding: 14px 16px;
    background: var(--wvc-surface-soft);
    color: var(--wvc-text);
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wvc-field textarea {
    min-height: 120px;
    resize: vertical;
}

.wvc-field input::placeholder,
.wvc-field textarea::placeholder {
    color: var(--wvc-muted);
}

.wvc-field-help {
    color: var(--wvc-muted);
    font-size: 12px;
    line-height: 1.5;
}

.wcc-upload-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wcc-upload {
    display: grid;
    gap: 10px;
    padding: 16px;
    background: var(--wvc-surface-soft);
    border: 1px dashed var(--wvc-brand-line);
    border-radius: 20px;
}

.wcc-upload span {
    color: var(--wvc-text);
    font-weight: 700;
}

.wcc-upload small,
.wcc-upload a {
    color: var(--wvc-text-soft);
    font-size: 12px;
}

.wcc-upload a {
    color: var(--wvc-brand);
    text-decoration: none;
}

.wcc-file-tag {
    color: var(--wvc-brand);
    font-size: 12px;
    font-weight: 700;
}

.wcc-consent-box {
    display: grid;
    gap: 12px;
}

.wcc-check {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--wvc-surface-soft);
    border: 1px solid var(--wvc-line);
    border-radius: 18px;
}

.wcc-check.required {
    background: linear-gradient(135deg, var(--wvc-brand-soft) 0%, #ffffff 100%);
    border-color: var(--wvc-brand-line);
}

.wcc-check span {
    color: var(--wvc-text);
    line-height: 1.6;
}

.wvc-btn {
    align-items: center;
    justify-content: center;
    display: inline-flex;
    gap: 8px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 18px;
    border: 1px solid var(--wvc-line);
    background: var(--wvc-surface);
    box-shadow: var(--wvc-shadow-soft);
    color: var(--wvc-text);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wvc-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.wvc-btn-soft {
    background: var(--wvc-bg-soft);
    color: var(--wvc-text-soft);
}

.wvc-btn-primary {
    background: var(--wvc-brand);
    border-color: var(--wvc-brand);
    color: #fff;
}

.wvc-btn-primary:hover {
    background: var(--wvc-brand-hover);
    border-color: var(--wvc-brand-hover);
    color: #fff;
}

.wcc-form-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

.wcc-panel-lite,
.wcc-success-card {
    padding: 30px;
}

.wcc-order-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.wcc-order-choice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
    background: var(--wvc-surface-soft);
    border: 1px solid var(--wvc-line);
}

.wcc-order-choice strong,
.wcc-order-choice span,
.wcc-order-choice small {
    display: block;
}

.wcc-order-choice span,
.wcc-order-choice small {
    margin-top: 4px;
    color: var(--wvc-text-soft);
}

.wcc-success-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 26px 0;
}

.wcc-success-grid article {
    padding: 18px;
    border-radius: 20px;
    background: var(--wvc-surface-soft);
    border: 1px solid var(--wvc-line);
}

.wcc-success-grid span {
    display: block;
    color: var(--wvc-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wcc-success-grid strong {
    display: block;
    margin-top: 8px;
    color: var(--wvc-text);
    font-size: 22px;
}

.wcc-success-actions {
    display: flex;
    gap: 12px;
}

.wcc-public-activity {
    margin-top: 28px;
    padding: 22px;
    border-radius: 24px;
    background: var(--wvc-surface-soft);
    border: 1px solid var(--wvc-line);
}

.wcc-public-activity-head h3 {
    margin: 0 0 10px;
    color: var(--wvc-text);
    font-size: 24px;
    letter-spacing: -0.04em;
}

.wcc-public-activity-head p {
    margin: 0;
}

.wcc-public-activity-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.wcc-public-activity-item {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 18px 18px 18px 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--wvc-line);
}

.wcc-public-activity-item::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 12px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--wvc-brand);
    box-shadow: 0 0 0 6px rgba(37, 131, 234, 0.12);
}

.wcc-public-activity-meta {
    display: grid;
    gap: 6px;
}

.wcc-public-activity-meta strong {
    color: var(--wvc-text);
    font-size: 15px;
    line-height: 1.6;
}

.wcc-public-activity-meta small {
    color: var(--wvc-muted);
    font-size: 12px;
    font-weight: 700;
}

.wcc-thankyou-card {
    margin-top: 16px;
    padding: 20px;
    border-radius: 20px;
    background: var(--wvc-surface);
    border: 1px solid var(--wvc-line);
    box-shadow: var(--wvc-shadow-soft);
}

.wcc-account-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.wcc-account-stat,
.wcc-account-card,
.wcc-doc-status-card {
    background: var(--wvc-surface);
    border: 1px solid var(--wvc-line);
    border-radius: 24px;
    box-shadow: var(--wvc-shadow-soft);
}

.wcc-account-stat {
    padding: 20px;
}

.wcc-account-stat span {
    display: block;
    color: var(--wvc-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wcc-account-stat strong {
    display: block;
    margin: 10px 0 8px;
    color: var(--wvc-text);
    font-size: 28px;
    letter-spacing: -0.04em;
}

.wcc-account-stat small {
    color: var(--wvc-text-soft);
    line-height: 1.6;
}

.wcc-account-panel {
    margin-top: 18px;
}

.wcc-account-cards,
.wcc-doc-status-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
}

.wcc-account-card,
.wcc-doc-status-card {
    padding: 20px;
}

.wcc-account-card-head,
.wcc-doc-status-head,
.wcc-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.wcc-account-card-head strong,
.wcc-doc-status-head strong {
    display: block;
    color: var(--wvc-text);
    font-size: 20px;
    letter-spacing: -0.03em;
}

.wcc-account-card-head span {
    display: block;
    margin-top: 4px;
    color: var(--wvc-text-soft);
    line-height: 1.6;
}

.wcc-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.wcc-status-pill.is-pending {
    background: #fff8e8;
    color: var(--wvc-warning);
    border: 1px solid rgba(183, 121, 31, 0.18);
}

.wcc-status-pill.is-revision {
    background: #fff4f4;
    color: var(--wvc-danger);
    border: 1px solid rgba(220, 38, 38, 0.14);
}

.wcc-status-pill.is-approved {
    background: rgba(24, 163, 107, 0.12);
    color: var(--wvc-success);
    border: 1px solid rgba(24, 163, 107, 0.14);
}

.wcc-account-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.wcc-account-meta span,
.wcc-inline-note,
.wcc-account-update small,
.wcc-doc-status-card p {
    color: var(--wvc-text-soft);
    font-size: 13px;
    line-height: 1.6;
}

.wcc-account-meta span {
    padding: 9px 12px;
    background: var(--wvc-surface-soft);
    border: 1px solid var(--wvc-line);
    border-radius: 999px;
}

.wcc-inline-note {
    margin-bottom: 14px;
    padding: 14px 16px;
    background: #fff8e8;
    border: 1px solid rgba(183, 121, 31, 0.18);
    border-radius: 18px;
}

.wcc-account-update {
    padding: 16px 18px;
    background: var(--wvc-surface-soft);
    border: 1px solid var(--wvc-line);
    border-radius: 18px;
}

.wcc-account-update span {
    display: block;
    color: var(--wvc-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wcc-account-update strong {
    display: block;
    margin: 8px 0 6px;
    color: var(--wvc-text);
    font-size: 15px;
    line-height: 1.7;
}

.wcc-account-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.wcc-detail-header h2 {
    margin: 0 0 10px;
    color: var(--wvc-text);
    font-size: 26px;
    letter-spacing: -0.04em;
}

.wcc-detail-header p {
    margin: 0;
}

.wcc-doc-status-card p {
    margin: 12px 0 16px;
}

.wcc-doc-status-card .wvc-btn {
    margin-top: 4px;
}

.wcc-doc-status-card .wcc-inline-note {
    margin-top: 2px;
}

.wcc-doc-upload-form {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--wvc-line);
}

.wcc-doc-upload-picker {
    display: grid;
    gap: 8px;
}

.wcc-doc-upload-picker span {
    color: var(--wvc-text);
    font-size: 13px;
    font-weight: 700;
}

.wcc-doc-upload-picker input[type="file"] {
    width: 100%;
    border: 1px dashed var(--wvc-brand-line);
    border-radius: 16px;
    padding: 12px 14px;
    background: var(--wvc-surface-soft);
    color: var(--wvc-text-soft);
    font-size: 13px;
}

.wcc-form-shell {
    position: relative;
}

.wcc-form-shell::before {
    content: "";
    position: absolute;
    inset: -28px 20px auto;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 131, 234, 0.08) 0%, transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

.wcc-form-hero,
.wcc-success-card,
.wcc-panel-lite,
.wcc-form {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 255, 0.98) 100%);
}

.wcc-form-hero::after,
.wcc-success-card::after {
    content: "";
    position: absolute;
    right: -64px;
    top: -64px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 131, 234, 0.16) 0%, rgba(37, 131, 234, 0.02) 60%, transparent 72%);
}

.wcc-form-hero > *,
.wcc-success-card > * {
    position: relative;
    z-index: 1;
}

.wcc-order-card {
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.wcc-order-card::after {
    content: "";
    position: absolute;
    inset: auto -34px -44px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 131, 234, 0.12) 0%, transparent 68%);
}

.wcc-steps {
    position: relative;
    padding: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
    border: 1px solid var(--wvc-line);
    border-radius: 24px;
    box-shadow: var(--wvc-shadow-soft);
}

.wcc-steps button {
    min-height: 50px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.wcc-steps button.active {
    box-shadow: 0 12px 24px rgba(37, 131, 234, 0.12);
    transform: translateY(-1px);
}

.wcc-upload,
.wcc-account-stat,
.wcc-account-card,
.wcc-doc-status-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wcc-upload:hover,
.wcc-account-stat:hover,
.wcc-account-card:hover,
.wcc-doc-status-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 131, 234, 0.26);
    box-shadow: 0 22px 34px rgba(57, 66, 78, 0.1);
}

.wcc-account-stat {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.wcc-account-card,
.wcc-doc-status-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 255, 0.98) 100%);
}

.wcc-doc-upload-picker input[type="file"] {
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.wcc-doc-upload-picker input[type="file"]:hover {
    background: #ffffff;
    border-color: var(--wvc-brand);
    transform: translateY(-1px);
}

.wcc-public-activity {
    background: linear-gradient(180deg, rgba(238, 247, 255, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(159, 208, 255, 0.62);
}

.wcc-progress-card {
    display: grid;
    gap: 16px;
    margin-top: 18px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(237, 247, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(159, 208, 255, 0.72);
    border-radius: 24px;
    box-shadow: 0 18px 34px rgba(57, 66, 78, 0.08);
}

.wcc-progress-card.is-compact {
    padding: 18px;
    border-radius: 22px;
}

.wcc-progress-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.wcc-progress-head h3 {
    margin: 6px 0 8px;
    font-size: 20px;
    line-height: 1.25;
}

.wcc-progress-head p {
    margin: 0;
    color: var(--wvc-text-soft);
}

.wcc-progress-score {
    min-width: 110px;
    padding: 14px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(37, 131, 234, 0.14);
    border-radius: 20px;
}

.wcc-progress-score strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: var(--wvc-heading);
}

.wcc-progress-score span {
    display: block;
    margin-top: 6px;
    color: var(--wvc-text-soft);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wcc-progress-bar {
    position: relative;
    height: 10px;
    overflow: hidden;
    background: rgba(149, 181, 214, 0.24);
    border-radius: 999px;
}

.wcc-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--wvc-brand) 0%, #65b5ff 100%);
    box-shadow: 0 8px 18px rgba(37, 131, 234, 0.28);
}

.wcc-progress-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wcc-progress-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(200, 220, 240, 0.86);
    border-radius: 999px;
    color: var(--wvc-text-soft);
    font-size: 13px;
}

.wcc-progress-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.wcc-progress-step {
    position: relative;
    display: grid;
    gap: 6px;
    min-height: 116px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(200, 220, 240, 0.9);
    border-radius: 20px;
}

.wcc-progress-step::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c8d8ea;
    box-shadow: 0 0 0 6px rgba(200, 216, 234, 0.2);
}

.wcc-progress-step strong {
    font-size: 14px;
    line-height: 1.35;
    color: var(--wvc-heading);
}

.wcc-progress-step small {
    color: var(--wvc-text-soft);
    line-height: 1.5;
}

.wcc-progress-step.is-complete {
    border-color: rgba(58, 173, 109, 0.24);
    background: linear-gradient(180deg, rgba(241, 253, 246, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.wcc-progress-step.is-complete::before {
    background: #35b16d;
    box-shadow: 0 0 0 6px rgba(53, 177, 109, 0.14);
}

.wcc-progress-step.is-current {
    border-color: rgba(37, 131, 234, 0.28);
    box-shadow: 0 16px 30px rgba(37, 131, 234, 0.12);
}

.wcc-progress-step.is-current::before {
    background: var(--wvc-brand);
    box-shadow: 0 0 0 6px rgba(37, 131, 234, 0.14);
}

.wcc-progress-step.is-warning {
    border-color: rgba(240, 167, 58, 0.34);
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.wcc-progress-step.is-warning::before {
    background: #f0a73a;
    box-shadow: 0 0 0 6px rgba(240, 167, 58, 0.18);
}

.wcc-progress-card.is-compact .wcc-progress-head h3 {
    font-size: 18px;
}

.wcc-progress-card.is-compact .wcc-progress-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wcc-progress-card.is-compact .wcc-progress-step {
    min-height: 92px;
    padding: 14px;
}

.wcc-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.wcc-checklist-item {
    display: grid;
    gap: 8px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.96) 100%);
    border: 1px solid rgba(200, 220, 240, 0.9);
    border-radius: 20px;
}

.wcc-checklist-item strong {
    color: var(--wvc-heading);
    font-size: 16px;
    line-height: 1.35;
}

.wcc-checklist-item p {
    margin: 0;
    color: var(--wvc-text-soft);
    line-height: 1.65;
}

.wcc-checklist-item.is-complete {
    border-color: rgba(58, 173, 109, 0.24);
    background: linear-gradient(180deg, rgba(241, 253, 246, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.wcc-checklist-item.is-current {
    border-color: rgba(37, 131, 234, 0.24);
    box-shadow: 0 16px 30px rgba(37, 131, 234, 0.08);
}

.wcc-checklist-item.is-warning {
    border-color: rgba(240, 167, 58, 0.28);
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.wcc-checklist-item.is-todo {
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 980px) {
    .wcc-form-hero,
    .wcc-field-grid.two,
    .wcc-upload-grid,
    .wcc-success-grid,
    .wcc-account-summary,
    .wcc-account-cards,
    .wcc-checklist-grid,
    .wcc-doc-status-grid,
    .wcc-progress-steps {
        grid-template-columns: 1fr;
    }

    .wcc-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .wcc-form-shell {
        margin: 20px auto;
    }

    .wcc-form-hero,
    .wcc-success-card,
    .wcc-panel-lite,
    .wcc-form {
        padding: 22px;
        border-radius: 22px;
    }

    .wcc-steps {
        grid-template-columns: 1fr;
    }

    .wcc-form-footer,
    .wcc-success-actions,
    .wcc-order-choice,
    .wcc-detail-header,
    .wcc-progress-head,
    .wcc-account-card-head,
    .wcc-doc-status-head,
    .wcc-account-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wcc-public-activity {
        padding: 18px;
        border-radius: 20px;
    }
}
