.proj-hub { max-width: 1200px; }
.proj-intro {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 24px;
    max-width: 720px;
    line-height: 1.5;
}
.proj-section { margin-bottom: 32px; }
.proj-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.proj-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #4338ca;
    margin: 0;
}
.proj-section-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}
.proj-section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #c7d2fe 20%, #c7d2fe 80%, transparent);
    margin: 28px 0;
}
.proj-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.proj-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    min-height: 200px;
}
.proj-card:hover {
    transform: translateY(-2px);
    border-color: #c4b5fd;
    box-shadow: var(--shadow-md);
}
.proj-card-head {
    min-height: 72px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    color: #fff;
}
.proj-card-head.tariff { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }
.proj-card-head.executor { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); }
.proj-card-head.sla { background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%); }
.proj-card-head.tech { background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%); }
.proj-card-icon {
    font-size: 22px;
    line-height: 1;
    opacity: 0.95;
}
.proj-card-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.22);
    padding: 4px 8px;
    border-radius: 999px;
}
.proj-card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.proj-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}
.proj-card-meta {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 4px;
}
.proj-card-meta strong { color: var(--text-primary); font-weight: 600; }
.proj-card-footer {
    margin-top: auto;
    padding-top: 10px;
    font-size: 11px;
    color: var(--text-muted);
}
.proj-card-add {
    min-height: 200px;
    border: 2px dashed #c7d2fe;
    border-radius: 14px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
    color: #6366f1;
}
.proj-card-add:hover {
    background: #eef2ff;
    border-color: #a5b4fc;
    transform: translateY(-2px);
}
.proj-card-add-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    box-shadow: var(--shadow-sm);
}
.proj-card-add span { font-size: 13px; font-weight: 600; }
.proj-empty {
    padding: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #e2e8f0;
}
.proj-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}
.proj-modal-grid .form-group.full { grid-column: 1 / -1; }
@media (max-width: 640px) {
    .proj-modal-grid { grid-template-columns: 1fr; }
}
