/* ==========================================
   WORKSPACE MODULE - BRUTALIST COMMAND CENTER
   ========================================== */

/* ==========================================
   PROJECT LIST VIEW
   ========================================== */
.wsp-projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.wsp-projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.wsp-projects-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 0;
    letter-spacing: -0.03em;
}

.wsp-filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wsp-filter-pill {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.wsp-filter-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
}

.wsp-filter-pill.active {
    background: #06b6d4;
    color: #000;
    border-color: #06b6d4;
}

/* Project Cards */
.wsp-project-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}

.wsp-project-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateX(4px);
}

.wsp-project-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 0;
}

.wsp-project-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06b6d4;
    flex-shrink: 0;
}

.wsp-project-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.wsp-project-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #52525b;
}

.wsp-project-meta .mono {
    font-family: var(--font-mono);
}

.wsp-project-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.wsp-status-badge {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.wsp-status-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.wsp-status-onboarding {
    background: rgba(234, 179, 8, 0.1);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.wsp-status-onboarding .dot {
    background: #facc15;
    box-shadow: 0 0 6px #facc15;
}

.wsp-status-review {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.wsp-status-review .dot {
    background: #f59e0b;
    box-shadow: 0 0 6px #f59e0b;
}

.wsp-status-kickoff {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.wsp-status-kickoff .dot {
    background: #3b82f6;
    box-shadow: 0 0 6px #3b82f6;
}

.wsp-status-progress {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.wsp-status-progress .dot {
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}

.wsp-status-delivery {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.wsp-status-delivery .dot {
    background: #8b5cf6;
    box-shadow: 0 0 6px #8b5cf6;
}

.wsp-status-closed {
    background: rgba(100, 116, 139, 0.1);
    color: #94a3b8;
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.wsp-status-closed .dot {
    background: #64748b;
}

.wsp-card-arrow {
    color: #334155;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.wsp-project-card:hover .wsp-card-arrow {
    color: #06b6d4;
    transform: translateX(3px);
}

/* ==========================================
   WORKSPACE LAYOUT (Inside a project)
   ========================================== */
.workspace-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.ws-header {
    margin-bottom: 2rem;
}

.wsp-back-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-family: inherit;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.5rem;
}

.wsp-back-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
}

.ws-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.ws-title-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 0;
    letter-spacing: -0.03em;
}

.ws-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #52525b;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

#ws-project-subtitle {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
    color: #64748b;
    max-width: 550px;
    line-height: 1.6;
}

/* ==========================================
   PROGRESS BAR (Stepper)
   ========================================== */
.ws-progress-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 0.5rem;
}

.ws-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #3f3f46;
    transition: all 0.3s;
    white-space: nowrap;
}

.ws-step-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f3f46;
}

.ws-step-icon svg,
.ws-step-icon i {
    width: 14px;
    height: 14px;
}

.ws-step-line {
    width: 24px;
    height: 2px;
    background: #1e293b;
    flex-shrink: 0;
}

/* Step States */
.ws-step.done {
    color: #06b6d4;
}

.ws-step.done .ws-step-icon {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06b6d4;
}

.ws-step.done~.ws-step-line {
    background: #06b6d4;
}

.ws-step.active {
    color: #f8fafc;
}

.ws-step.active .ws-step-icon {
    background: #06b6d4;
    border-color: #06b6d4;
    color: #000;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
}

.ws-step.pending {
    color: #27272a;
}

/* ==========================================
   HUB & TABS
   ========================================== */
.ws-hub-box {
    background: #09090b;
    border: 1px solid #18181b;
    border-radius: 16px;
    overflow: hidden;
}

.ws-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.3);
    padding: 0 1rem;
    overflow-x: auto;
}

.ws-tab {
    background: none;
    border: none;
    color: #52525b;
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
    position: relative;
}

.ws-tab:hover {
    color: #a1a1aa;
}

.ws-tab.active {
    color: #06b6d4;
    border-bottom-color: #06b6d4;
}

.ws-tab svg,
.ws-tab i {
    width: 16px;
    height: 16px;
}

/* Unread badge */
.ws-unread-badge {
    position: absolute;
    top: 8px;
    right: 4px;
    background: #06b6d4;
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

/* Tab Content */
.ws-tab-content {
    padding: 2rem;
}

.ws-section {
    display: none;
}

.ws-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Cards inside tabs */
.ws-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.ws-card h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
}

/* ==========================================
   CHAT (Workspace Messages)
   ========================================== */
.ws-chat-history {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ws-chat-history::-webkit-scrollbar {
    width: 6px;
}

.ws-chat-history::-webkit-scrollbar-track {
    background: transparent;
}

.ws-chat-history::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.wsp-msg {
    margin-bottom: 16px;
}

.wsp-msg-me {
    text-align: right;
}

.wsp-msg-them {
    text-align: left;
}

.wsp-msg-meta {
    font-size: 0.7rem;
    margin-bottom: 4px;
}

.wsp-msg-me .wsp-msg-meta {
    color: #52525b;
}

.wsp-msg-them .wsp-msg-meta {
    color: #06b6d4;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wsp-msg-bubble {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    text-align: left;
    max-width: 80%;
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.wsp-msg-me .wsp-msg-bubble {
    background: #06b6d4;
    color: #000;
    border-bottom-right-radius: 2px;
}

.wsp-msg-them .wsp-msg-bubble {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    border-bottom-left-radius: 2px;
}

.wsp-msg-bubble img {
    max-width: 220px;
    max-height: 160px;
    border-radius: 8px;
    cursor: pointer;
    display: block;
}

/* System Messages */
.wsp-msg-system {
    text-align: center;
    margin-bottom: 16px;
}

.wsp-msg-system-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.06);
    border: 1px solid rgba(6, 182, 212, 0.12);
    border-left: 3px solid #06b6d4;
    border-radius: 6px;
    color: #94a3b8;
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 90%;
    text-align: left;
}

.wsp-msg-system-bar i {
    color: #06b6d4;
}

.wsp-msg-system-time {
    font-size: 0.65rem;
    color: #3f3f46;
    margin-top: 4px;
}

/* Admin Avatar */
.wsp-msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid rgba(6, 182, 212, 0.2);
}

.wsp-msg-avatar-fallback {
    background: rgba(6, 182, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06b6d4;
}

/* Team message row layout */
.wsp-msg-them-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.wsp-msg-them-content {
    flex: 1;
    min-width: 0;
}

/* Chat Input */
.ws-chat-input {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ws-chat-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.ws-chat-input input:focus {
    border-color: #06b6d4;
}

.ws-chat-input button {
    width: 42px;
    height: 42px;
    padding: 0;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.wsp-btn-send {
    background: #06b6d4;
    color: #000;
}

.wsp-btn-send:hover {
    background: #22d3ee;
}

.wsp-btn-attach {
    background: rgba(255, 255, 255, 0.05);
    color: #64748b;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.wsp-btn-attach:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
}

/* ==========================================
   LOCK OVERLAY
   ========================================== */
.ws-lock-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(9, 9, 11, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-lock-card {
    text-align: center;
    max-width: 480px;
    padding: 3rem 2rem;
}

.ws-lock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #34d399;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ws-lock-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.ws-lock-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.ws-lock-cta {
    background: #06b6d4;
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    transition: all 0.2s;
}

.ws-lock-cta:hover {
    background: #22d3ee;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

/* ==========================================
   FILES GRID
   ========================================== */
.ws-files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

/* ==========================================
   CHECKLIST
   ========================================== */
.ws-checklist-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ==========================================
   WIZARD MODAL
   ========================================== */
.wizard-card {
    background: #09090b;
    border: 1px solid #18181b;
    border-radius: 16px;
}

.wizard-progress-track {
    height: 4px;
    background: #18181b;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.wizard-progress-fill {
    height: 100%;
    background: #06b6d4;
    transition: width 0.4s ease;
    border-radius: 2px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {

    .wsp-projects-container,
    .workspace-layout {
        padding: 1rem;
    }

    .wsp-projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .ws-header-content {
        flex-direction: column;
    }

    .ws-progress-bar {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .ws-step span {
        display: none;
    }

    .ws-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ws-tab-content {
        padding: 1.25rem;
    }

    .wsp-project-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .wsp-project-right {
        width: 100%;
        justify-content: space-between;
    }

    .wsp-msg-bubble {
        max-width: 90%;
    }

    .wsp-proposal-card {
        border-radius: 12px;
    }

    .wsp-proposal-hdr {
        flex-direction: column;
    }

    .wsp-proposal-ref {
        min-width: unset;
        width: 100%;
    }
}

/* ==========================================
   FASE 2: FILE ITEMS
   ========================================== */
.wsp-file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.wsp-file-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(6, 182, 212, 0.3);
}

.wsp-file-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f8fafc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wsp-file-meta {
    font-size: 0.72rem;
    color: #52525b;
}

.wsp-file-view {
    color: #06b6d4;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.wsp-file-item:hover .wsp-file-view {
    opacity: 1;
}

/* ==========================================
   FASE 2: CHECKLIST
   ========================================== */
.wsp-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wsp-checklist-item.done {
    opacity: 0.5;
}

.wsp-checklist-item.done .wsp-checklist-text {
    text-decoration: line-through;
}

.wsp-checklist-text {
    flex: 1;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.wsp-checklist-assigned {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wsp-checklist-assigned.client {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.wsp-checklist-assigned.team {
    background: rgba(100, 116, 139, 0.1);
    color: #94a3b8;
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.wsp-checklist-btn {
    background: none;
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #06b6d4;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: all 0.2s;
}

.wsp-checklist-btn:hover {
    background: #06b6d4;
    color: #000;
}

/* ==========================================
   FASE 2: ACTIVITY TIMELINE
   ========================================== */
.wsp-activity-timeline {
    position: relative;
    padding-left: 24px;
}

.wsp-activity-line {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
}

.wsp-activity-item {
    position: relative;
    margin-bottom: 20px;
}

.wsp-activity-dot {
    position: absolute;
    left: -20px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #06b6d4;
    border: 2px solid #09090b;
}

.wsp-activity-meta {
    font-size: 0.78rem;
    color: #52525b;
    margin-bottom: 2px;
}

.wsp-activity-actor {
    color: #06b6d4;
    font-weight: 700;
}

.wsp-activity-action {
    font-size: 0.9rem;
    color: #e2e8f0;
}

/* ==========================================
   FASE 2: WARNING BANNER
   ========================================== */
.wsp-warning-banner {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.wsp-warning-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ef4444;
    font-size: 0.9rem;
}

.wsp-warning-btn {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    flex-shrink: 0;
    transition: all 0.2s;
}

.wsp-warning-btn:hover {
    background: #dc2626;
}

/* ==========================================
   FASE 2: PROPOSAL DOCUMENT CARD
   ========================================== */
.wsp-proposal-card {
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    margin: 16px 0 40px 0;
}

.wsp-proposal-hdr {
    background: rgba(0, 0, 0, 0.4);
    padding: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.wsp-proposal-hdr-info {
    flex: 1;
    min-width: 250px;
}

.wsp-proposal-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 4px;
    color: #06b6d4;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.wsp-proposal-title {
    color: #f8fafc;
    margin: 0 0 8px 0;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.wsp-proposal-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.wsp-proposal-ref {
    text-align: right;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    min-width: 180px;
}

.wsp-proposal-ref-label {
    color: #3f3f46;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.wsp-proposal-ref-value {
    color: #f8fafc;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.wsp-proposal-body {
    padding: 40px 32px;
}

.wsp-proposal-section {
    margin-bottom: 40px;
}

.wsp-proposal-section-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.wsp-proposal-section-icon {
    width: 32px;
    height: 32px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06b6d4;
}

.wsp-proposal-section-title {
    color: #f8fafc;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
}

.wsp-proposal-text {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
    padding-left: 44px;
}

.wsp-proposal-systems {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 44px;
}

.wsp-proposal-systems li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.wsp-price-block {
    padding-left: 44px;
}

.wsp-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.wsp-price-label {
    color: #cbd5e1;
    font-size: 1rem;
}

.wsp-price-value {
    color: #06b6d4;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-mono);
    letter-spacing: -1px;
}

.wsp-price-unit {
    font-size: 0.9rem;
    color: #52525b;
    font-weight: 500;
}

.wsp-price-detail {
    font-size: 0.8rem;
    color: #52525b;
    margin-top: 4px;
}

.wsp-price-note {
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Accept CTA */
.wsp-accept-cta {
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.wsp-accept-cta h3 {
    color: #f8fafc;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.wsp-accept-cta p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 24px 0;
    max-width: 500px;
    display: inline-block;
}

.wsp-accept-btn {
    background: #06b6d4;
    color: #000;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.wsp-accept-btn:hover {
    background: #22d3ee;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

/* Delivery Banner */
.ws-delivery-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    flex-wrap: wrap;
}

.ws-delivery-banner h4 {
    margin: 0 0 4px 0;
    color: #f8fafc;
    font-size: 1.1rem;
}

.ws-delivery-banner p {
    margin: 0;
    color: #64748b;
    font-size: 0.85rem;
}