/* ══════════════════════════════════════════
   Walkthrough Simulation Styles
   ══════════════════════════════════════════ */
.wt-wrap {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 120px);
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Main content area */
.wt-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 40px 20px;
}

.wt-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 10px;
}

.wt-subtitle {
    font-size: 16px;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 32px;
}

/* Step image */
.wt-image-wrap {
    width: 100%;
    max-width: 900px;
    max-height: 500px;
    border-radius: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.wt-image-wrap.no-clip {
    overflow: visible;
    box-shadow: none;
    border-radius: 0;
}

.wt-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Bottom navigation */
.wt-bottom {
    flex-shrink: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 0 40px;
}

.wt-progress-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 6px;
}

.wt-progress-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.wt-progress-count {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.wt-progress-bar {
    width: 100%;
    height: 3px;
    background: #e5e7eb;
    margin-bottom: 18px;
}

.wt-progress-fill {
    height: 100%;
    background: linear-gradient(to bottom, #2b69d1, #184db0);
    transition: width 0.4s ease;
}

.wt-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 18px;
}

.wt-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    transition: all 0.15s;
}

.wt-btn-prev {
    background: #fff;
    border: 1.5px solid #d1d5db;
    color: #6b7280;
}

.wt-btn-prev:hover {
    background: #f9fafb;
}

.wt-btn-prev.hidden {
    visibility: hidden;
}

.wt-btn-next {
    background: linear-gradient(to bottom, #2b69d1, #184db0);
    border: none;
    color: #fff;
}

.wt-btn-next:hover {
    filter: brightness(1.1);
}

.wt-btn-next.finish {
    background: #22c55e;
}

.wt-btn-next.finish:hover {
    background: #16a34a;
}

/* Document review step */
.wt-doc-scroll {
    width: 100%;
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    padding: 0;
}

.wt-doc-checkbox {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 16px;
}

.wt-doc-check-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.wt-doc-check-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #3b82f6;
    flex-shrink: 0;
}

.wt-doc-check-label input[type="checkbox"]:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.wt-doc-check-label input[type="checkbox"]:disabled+div {
    opacity: 0.7;
}

.wt-doc-check-hint {
    display: block;
    font-size: 13px;
    color: #374151;
    margin-top: 2px;
}

/* Questions card */
.wt-q-card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.wt-q-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 8px;
}

.wt-q-counter {
    font-size: 13px;
    color: #6b7280;
}

.wt-q-pct {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
}

.wt-q-bar {
    height: 6px;
    background: #e5e7eb;
    margin: 0 24px 24px;
    border-radius: 3px;
    overflow: hidden;
}

.wt-q-bar-fill {
    height: 100%;
    background: linear-gradient(to bottom, #2b69d1, #184db0);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.wt-q-body {
    padding: 0 24px 28px;
    text-align: center;
}

.wt-q-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.wt-q-req {
    color: #ef4444;
}

.wt-q-input {
    width: 100%;
    max-width: 460px;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a1a;
    background: #f9fafb;
    margin-bottom: 24px;
}

.wt-q-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
}

.wt-q-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.wt-q-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.wt-q-btn-prev {
    background: #fff;
    border: 1.5px solid #d1d5db;
    color: #6b7280;
}

.wt-q-btn-prev:hover {
    background: #f9fafb;
}

.wt-q-btn-next {
    background: linear-gradient(to bottom, #2b69d1, #184db0);
    border: none;
    color: #fff;
}

.wt-q-btn-next:hover {
    filter: brightness(1.1);
}

.wt-q-enter {
    font-size: 13px;
    color: #9ca3af;
}

.wt-q-enter kbd {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 12px;
    font-family: inherit;
    color: #6b7280;
}

@media (max-width: 576px) and (orientation: portrait) {
    .wt-q-card {
        border-radius: 8px;
    }

    .wt-q-title {
        font-size: 16px;
    }

    .wt-q-input {
        max-width: 100%;
    }
}

/* Contract Center Thumbnails (Step 5) */
.wt-contracts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.wt-contract-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.wt-contract-card:hover {
    border-color: #93b4e8;
    box-shadow: 0 6px 20px rgba(24, 77, 176, 0.12);
}

.wt-contract-thumb {
    width: 100%;
    height: 320px;
    background: #fff;
    overflow: hidden;
    pointer-events: none;
    border-bottom: 1px solid #e5e7eb;
}

.wt-contract-preview {
    padding: 22px 18px;
    font-size: 7.5px;
    line-height: 1.5;
    color: #333;
    text-align: left;
    font-family: 'Times New Roman', Times, Georgia, serif;
}

.wt-cp-blank {
    display: inline-block;
    border-bottom: 1px solid #999;
    min-width: 60px;
    color: transparent;
}

.wt-contract-name {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.wt-contract-back-row {
    max-width: 900px;
    margin: 0 auto 12px;
}

.wt-contract-back-btn {
    background: none;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, border-color 0.15s;
}

.wt-contract-back-btn:hover {
    background: #f3f4f6;
    border-color: #bfdbfe;
}

@media (max-width: 576px) {
    .wt-contracts {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Signature Step (Step 5) */
.wt-sig-scroll {
    background: #fff;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    height: 800px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
}

.wt-sig-doc-inner {
    padding: 32px 40px;
    text-align: left;
}

.wt-sig-doc-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a4a9e;
    text-align: center;
    margin-bottom: 32px;
}

.wt-sig-doc-inner p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.wt-sig-doc-inner strong {
    color: #1f2937;
}

.wt-sig-section {
    border-top: 1px solid #e5e7eb;
    margin-top: 32px;
    padding-top: 24px;
}

.wt-sig-label {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.wt-sig-sub-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.wt-sig-pad-wrap {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
    padding: 10px;
}

.wt-sig-canvas {
    display: block;
    width: 100%;
    height: 140px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #f3f4f6;
    margin-bottom: 10px;
    cursor: crosshair;
    touch-action: none;
}

.wt-sig-clear {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    color: #6b7280;
    cursor: pointer;
    font-family: inherit;
}

.wt-sig-clear:hover {
    background: #f9fafb;
}

.wt-sig-hint {
    float: right;
    font-size: 11px;
    color: #9ca3af;
    font-style: italic;
    margin-top: 5px;
}

.wt-sig-date-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.wt-sig-date-input {
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 10px;
    font-family: inherit;
    font-size: 13px;
    color: #111827;
}

.wt-sig-footer-alert {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-size: 13px;
    color: #2563eb;
    margin-top: 24px;
    font-weight: 500;
}


/* Instant Course Creator */
.wt-course {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.wt-course-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 24px;
}

.wt-course-card-inner {
    display: flex;
}

.wt-course-thumb {
    width: 200px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wt-course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wt-course-info {
    flex: 1;
    padding: 20px 24px;
}

.wt-course-name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.wt-course-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.5;
}

.wt-course-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.wt-badge-level {
    background: #e0e7ff;
    color: #4338ca;
    font-size: 13px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: capitalize;
}

.wt-badge-meta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6b7280;
}

.wt-course-progress-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 4px;
}

.wt-course-progress-pct {
    font-weight: 600;
    color: #6366f1;
}

.wt-course-progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.wt-course-progress-fill {
    height: 100%;
    background: #6366f1;
    border-radius: 4px;
}

/* Modules */
.wt-module {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.wt-module-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(to right, #eef2ff, #f5f3ff);
    border-bottom: 1px solid #e5e7eb;
}

.wt-module-num {
    width: 40px;
    height: 40px;
    background: #6366f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.wt-module-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.wt-module-desc {
    font-size: 13px;
    color: #6b7280;
}

/* Lessons */
.wt-lesson {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f3f4f6;
}

.wt-lesson:hover {
    background: #f9fafb;
}

.wt-lesson-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #111827;
}

.wt-lesson-icon {
    width: 28px;
    height: 28px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    flex-shrink: 0;
}

.wt-lesson-time {
    font-size: 13px;
    color: #9ca3af;
}

/* Quiz row */
.wt-quiz-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #fef2f2;
}

.wt-quiz-row:hover {
    background: #fee2e2;
}

.wt-quiz-icon {
    width: 28px;
    height: 28px;
    background: #fecaca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #991b1b;
    flex-shrink: 0;
}

.wt-quiz-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.wt-quiz-pass {
    font-size: 12px;
    color: #6b7280;
}

/* Start Course button */
.wt-course-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #143e56;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(20, 62, 86, 0.3);
    transition: all 0.2s;
}

.wt-course-start-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Preview notice */
.wt-course-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: #1e40af;
}

@media (max-width: 576px) and (orientation: portrait) {
    .wt-course-card-inner {
        flex-direction: column;
    }

    .wt-course-thumb {
        width: 100%;
        height: 160px;
    }
}

/* Video thumbnail links */
.wt-video-thumb-link {
    display: block;
    text-decoration: none;
}

.wt-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 2;
}

.wt-video-thumb-link:hover .wt-video-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Real AI Roleplay */
.wt-ai {
    width: 100%;
    max-width: 1000px;
}

.wt-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 20px;
}

/* Video */
.wt-ai-video-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wt-ai-video-wrap {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.wt-ai-video-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #111827;
}

/* Sessions */
.wt-ai-sessions-col {
    display: flex;
    flex-direction: column;
}

.wt-ai-sessions-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 14px;
}

.wt-ai-sessions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}

.wt-ai-session-card {
    background: #fff;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.wt-ai-session-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #9ca3af;
}

.wt-ai-session-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wt-ai-session-num {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #9ca3af;
    flex-shrink: 0;
}

.wt-ai-session-name {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.wt-ai-session-action {
    font-size: 12px;
    color: #9ca3af;
}

.wt-ai-grade-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 16px;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

@media (max-width: 576px) and (orientation: portrait) {
    .wt-ai-grid {
        grid-template-columns: 1fr;
    }

    .wt-ai-sessions-list {
        max-height: none;
    }
}

/* DocuGrader Step */
.wt-dg-step {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.wt-dg-video-wrap {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.wt-dg-video-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.wt-dg-section-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 20px;
}

.wt-dg-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto 24px;
}

.wt-dg-card {
    background: #fff;
    border: 3px solid #d1d5db;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.wt-dg-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #9ca3af;
}

.wt-dg-card-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #9ca3af;
}

.wt-dg-card-doc {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.wt-dg-card-label {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.wt-dg-grade-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 576px) and (orientation: portrait) {
    .wt-dg-cards {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

/* Final Checklist */
.wt-checklist {
    width: 100%;
    max-width: 576px;
    margin: 0 auto;
}

.wt-cl-progress-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 6px;
}

.wt-cl-progress-bar {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 28px;
}

.wt-cl-progress-fill {
    height: 100%;
    background: #2563eb;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.wt-cl-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wt-cl-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 18px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.wt-cl-item:hover {
    border-color: #d1d5db;
}

.wt-cl-item.checked {
    border-color: #86efac;
    background: #f0fdf4;
}

.wt-cl-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    transition: all 0.2s;
}

.wt-cl-item.checked .wt-cl-checkbox {
    background: #22c55e;
    border-color: #22c55e;
}

.wt-cl-text {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
}

.wt-cl-item.checked .wt-cl-text {
    text-decoration: line-through;
    color: #9ca3af;
}

/* Completion overlay */
.wt-complete {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wt-complete-card {
    text-align: center;
    max-width: 440px;
    padding: 40px;
}

.wt-complete-icon {
    margin-bottom: 20px;
}

.wt-complete-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.wt-complete-sub {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 28px;
    line-height: 1.6;
}

.wt-complete-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.wt-complete-btn {
    background: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wt-complete-btn:hover {
    background: #333;
}

.wt-complete-btn.secondary {
    background: #fff;
    color: #1a1a1a;
    border: 1.5px solid #d1d5db;
}

.wt-complete-btn.secondary:hover {
    background: #f9fafb;
}

@media (max-width: 576px) and (orientation: portrait) {
    .wt-content {
        padding: 20px 16px 12px;
    }

    .wt-title {
        font-size: 22px;
    }

    .wt-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .wt-bottom {
        padding: 0 16px;
    }

    .wt-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}