
/* ========== CSS 变量 ========== */
:root {
  --primary: #2563eb;
  --primary-light: #dbeafe;
  --primary-dark: #1d4ed8;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --sidebar-bg: #1e293b;
  --sidebar-text: #cbd5e1;
  --sidebar-active: #2563eb;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.1);
  --radius: 10px;
  --radius-sm: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

/* ========== 布局 ========== */
.app { display: flex; min-height: 100vh; }

.sidebar {
  width: 220px;
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.sidebar-header {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.sidebar-header h1 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.sidebar-header p {
  font-size: 12px;
  color: var(--text-light);
}

.sidebar-nav {
  flex: 1;
  padding: 12px 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
  font-size: 14px;
  margin-bottom: 2px;
}

.nav-item:hover { background: rgba(255,255,255,0.06); }

.nav-item.active {
  background: var(--sidebar-active);
  color: #fff;
}

.nav-icon { font-size: 18px; width: 24px; text-align: center; }

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: var(--text-light);
  flex-shrink: 0;
}

.main {
  flex: 1;
  margin-left: 220px;
  padding: 28px 32px;
  max-width: calc(100vw - 220px);
}

/* ========== 业务板块切换条 ========== */
.biz-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
.biz-switch-label { font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.biz-switch-btn {
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.biz-switch-btn:hover { background: #eef2ff; }
.biz-switch-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 6px rgba(37,99,235,.3);
}

/* ========== 页面标题 ========== */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.page-title { font-size: 22px; font-weight: 700; color: var(--text); }
.page-subtitle { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

/* ========== 卡片 ========== */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}

.card-body { padding: 20px; }

/* ========== 统计卡片 ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 20px;
  transition: transform 0.15s;
}

.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.stat-label { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.stat-value { font-size: 28px; font-weight: 700; color: var(--text); }
.stat-value.primary { color: var(--primary); }
.stat-value.success { color: var(--success); }
.stat-value.warning { color: var(--warning); }

/* ========== 状态标签 ========== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-pending { background: #fee2e2; color: #dc2626; }       /* 待处理 红 */
.badge-dispatched { background: #dbeafe; color: #2563eb; }    /* 派单中 蓝 */
.badge-label_created { background: #cffafe; color: #0891b2; } /* 已出运单 青 */
.badge-received { background: #e0e7ff; color: #4338ca; }      /* 已入库 靛 */
.badge-inspecting { background: #ffedd5; color: #ea580c; }    /* 检测中 橙 */
.badge-repairing { background: #fef9c3; color: #a16207; }     /* 维修中 黄 */
.badge-ready { background: #fce7f3; color: #be185d; }         /* 待发货 粉 */
.badge-shipped { background: #ccfbf1; color: #0f766e; }       /* 已发货 蓝绿 */
.badge-completed { background: #dcfce7; color: #16a34a; }    /* 已完成 绿 */
.badge-inspected { background: #e0e7ff; color: #4338ca; }

/* ========== 表格 ========== */
.table-wrap { overflow-x: auto; }
/* 备件下拉：相对定位参照系（下拉 absolute 挂其内部，跟随输入框一起滚动） */
.part-input-wrap { position: relative; }
/* 下拉弹出时临时解除表格横向滚动裁剪，避免下拉被 .table-wrap 切掉（JS 内联控制，这里兜底） */
.table-wrap.dropdown-open,
.table-wrap:has(.part-search-dropdown) { overflow: visible; }
.part-search-dropdown { box-sizing: border-box; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th {
  text-align: left;
  padding: 12px 14px;
  background: #f8fafc;
  border-bottom: 2px solid var(--border);
  color: var(--text-secondary);
  font-weight: 600;
  white-space: nowrap;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

tbody tr:hover { background: #f8fafc; }
tbody tr { transition: background 0.1s; }

.clickable-row { cursor: pointer; }

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

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

.btn-secondary { background: var(--card-bg); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: #f1f5f9; }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; }

.btn-sm { padding: 6px 12px; font-size: 13px; }

.btn-group { display: flex; gap: 8px; }

/* ========== 表单 ========== */
.form-section {
  margin-bottom: 28px;
}

.form-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-section-title .num {
  background: var(--primary);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

label .required { color: var(--danger); }

input, select, textarea {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  background: var(--card-bg);
  color: var(--text);
  transition: border-color 0.15s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

textarea { resize: vertical; min-height: 70px; }

input[type="date"] { cursor: pointer; }
input[readonly] { background: #f8fafc; color: var(--text-secondary); }

/* ========== 备件表格 ========== */
.parts-table { margin-top: 8px; }

.parts-table th { font-size: 12px; }

.parts-table input {
  padding: 6px 10px;
  font-size: 13px;
}

.part-row-total {
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  padding: 8px 14px;
}

.btn-remove-part {
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-size: 18px;
  padding: 4px 8px;
}

/* ========== 费用汇总 ========== */
.cost-summary {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 12px;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}

.cost-row.total {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* ========== 筛选栏 ========== */
.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-bar input, .filter-bar select {
  width: auto;
  min-width: 140px;
}

.search-input {
  flex: 1;
  min-width: 200px;
}

/* ========== 空状态 ========== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.empty-state .icon { font-size: 48px; margin-bottom: 12px; }
.empty-state p { font-size: 15px; margin-bottom: 16px; }

/* ========== 模态框 ========== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.modal-overlay.show { display: flex; }

.modal {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}

.modal h3 { font-size: 18px; margin-bottom: 12px; }
.modal p { color: var(--text-secondary); margin-bottom: 20px; }

/* ========== 结算报表 ========== */
.settlement-summary {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.settlement-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px;
  text-align: center;
}

.settlement-card .label { font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; }
.settlement-card .value { font-size: 22px; font-weight: 700; }
.settlement-card .value.primary { color: var(--primary); }

/* ========== 打印样式 ========== */
.print-only { display: none; }

@media print {
  .sidebar, .page-header, .filter-bar, .no-print { display: none !important; }
  .main { margin-left: 0; padding: 0; }
  .print-only { display: block; }
  body { background: #fff; }
  .card { box-shadow: none; border: 1px solid #ccc; }

  .print-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #333;
  }
  .print-header h2 { font-size: 20px; margin-bottom: 6px; }
  .print-header p { font-size: 13px; color: #666; }

  .print-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 13px;
  }

  /* ===== 维修报告打印：只显示报告本身 ===== */
  body > *:not(#report-modal) { display: none !important; }
  #report-modal { display: block !important; position: static; background: #fff; padding: 0; }
  #report-modal .no-print { display: none !important; }
  .report-doc { box-shadow: none !important; border: none !important; margin: 0; max-width: 100%; }
}

/* ========== 维修报告弹窗 ========== */
#report-modal {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.55);
  overflow-y: auto;
  padding: 24px;
}
.report-toolbar {
  position: sticky; top: 0; z-index: 2;
  display: flex; justify-content: flex-end; gap: 8px;
  max-width: 800px; margin: 0 auto 16px;
  background: #fff; padding: 12px; border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.report-doc {
  background: #fff; max-width: 800px; margin: 0 auto;
  padding: 36px 40px; border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  color: #1a1a1a; font-size: 13px; line-height: 1.6;
}
.report-doc .print-header { text-align: center; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid #333; }
.report-doc .print-header h2 { font-size: 22px; margin-bottom: 6px; }
.report-doc .print-header p { font-size: 12px; color: #666; }
.report-info { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.report-info th { text-align: left; background: #f5f6f8; width: 14%; padding: 8px 10px; border: 1px solid #e2e5ea; font-weight: 600; }
.report-info td { padding: 8px 10px; border: 1px solid #e2e5ea; }
.report-subtitle { font-size: 15px; margin: 22px 0 10px; padding-left: 8px; border-left: 4px solid var(--primary, #2563eb); }
.report-table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.report-table th { background: #f5f6f8; padding: 8px 10px; border: 1px solid #e2e5ea; text-align: left; font-weight: 600; }
.report-table td { padding: 8px 10px; border: 1px solid #e2e5ea; vertical-align: top; }
.report-table tfoot td { background: #fafbfc; font-weight: 700; }
.report-test { border: 1px solid #e2e5ea; border-radius: 6px; padding: 12px 14px; min-height: 48px; background: #fcfcfd; }
.report-sign { display: flex; flex-wrap: wrap; gap: 24px 48px; margin-top: 36px; font-size: 13px; }
.report-sign span { display: inline-block; }

/* ========== 提示信息 ========== */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 13px;
}

.alert-info { background: var(--primary-light); color: var(--primary-dark); }
.alert-warning { background: #fef3c7; color: #92400e; }

/* ========== 图表 ========== */
.chart-bar-container {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 180px;
  padding: 12px 0;
}

.chart-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar {
  width: 100%;
  max-width: 50px;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
  min-height: 4px;
  transition: height 0.3s;
  position: relative;
}

.chart-bar-label { font-size: 12px; color: var(--text-secondary); }
.chart-bar-value { font-size: 11px; color: var(--text); font-weight: 600; }

/* ========== 响应式 — 手机端 ========== */
.mobile-topbar {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; height: 52px;
  background: var(--sidebar-bg); color: #fff; z-index: 200;
  align-items: center; padding: 0 12px; gap: 10px;
}
.mobile-topbar .hamburger {
  width: 36px; height: 36px; border-radius: 8px; border: none;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mobile-topbar .m-title { font-size: 14px; font-weight: 700; flex: 1; }
.sidebar-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 99;
}
.sidebar-overlay.show { display: block; }

@media (max-width: 768px) {
  .mobile-topbar { display: flex; }
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 200;
  }
  .sidebar.open { transform: translateX(0); }
  .main {
    margin-left: 0 !important;
    padding: 64px 14px 24px !important;
    max-width: 100vw !important;
  }
  .form-grid, .form-grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .page-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .page-header .btn { width: 100%; }
  .login-card { padding: 28px 20px; }
  .login-card h1 { font-size: 18px; }
  table { font-size: 13px; }
  .card-body { padding: 14px; }
  .voice-btn { padding: 12px 20px; font-size: 14px; }
  .tech-card { flex-direction: column; align-items: flex-start; }
  .tech-stats { gap: 10px; }
  .dash-grid { grid-template-columns: 1fr !important; }
}

/* ========== 登录界面 ========== */
.login-screen {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
  display: flex; align-items: center; justify-content: center; z-index: 300;
  padding: 20px;
}
.login-card {
  background: #fff; border-radius: 16px; padding: 36px 32px;
  max-width: 400px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,0.3); text-align: center;
}
.login-card h1 { font-size: 20px; margin-bottom: 4px; color: var(--text); }
.login-card .subtitle { color: var(--text-secondary); margin-bottom: 24px; font-size: 13px; }
.login-tabs {
  display: flex; gap: 0; margin-bottom: 24px; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--border);
}
.login-tab {
  flex: 1; padding: 12px; border: none; background: var(--bg);
  font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.15s;
  color: var(--text-secondary); font-family: inherit;
}
.login-tab.active { background: var(--primary); color: #fff; }
.login-field { text-align: left; margin-bottom: 16px; }
.login-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.login-field input {
  width: 100%; padding: 12px 14px; border: 2px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: inherit; transition: border 0.15s;
}
.login-field input:focus { outline: none; border-color: var(--primary); }
.login-error {
  color: var(--danger); font-size: 13px; margin-bottom: 12px; display: none;
}
.login-error.show { display: block; }

/* ========== 扫码弹窗 ========== */
.scan-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 400;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.scan-modal.show { display: flex; }
.scan-modal-content {
  background: #fff; border-radius: 16px; padding: 20px;
  max-width: 480px; width: 100%; text-align: center;
}
.scan-modal-content h3 { font-size: 16px; margin-bottom: 8px; }
.scan-modal-content p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }
#scan-reader { width: 100%; border-radius: 12px; overflow: hidden; }
.scan-result {
  margin-top: 12px; padding: 12px; background: #ecfdf5; border-radius: 8px;
  border: 1px solid #6ee7b7; font-size: 16px; font-weight: 700; display: none;
}
.scan-result.show { display: block; }
.scan-loading { font-size: 14px; color: var(--text-secondary); padding: 20px; }

/* ========== 维修项目卡片 ========== */
.repair-item {
  background: #f8fafc; border: 1px solid var(--border); border-radius: 10px;
  padding: 16px; margin-bottom: 12px; position: relative;
}
.repair-item-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.repair-item-title {
  font-weight: 700; font-size: 14px; color: var(--primary);
}
.repair-item .form-grid { margin-top: 0; }
.repair-item textarea { font-size: 13px; }

/* ========== 工具样式 ========== */
.text-right { text-align: right; }
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.mono { font-family: "SF Mono", "Fira Code", monospace; }
.text-secondary { color: var(--text-secondary); }
.font-bold { font-weight: 700; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 12px; }
.nav-group { }

/* ========== 语音录入 ========== */
.voice-section {
  background: #f0f9ff; border: 2px dashed #93c5fd; border-radius: 12px;
  padding: 20px; margin-bottom: 20px; text-align: center;
}
.voice-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border: none; border-radius: 30px;
  background: var(--primary); color: #fff; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.voice-btn:hover { background: var(--primary-dark); }
.voice-btn.recording { background: var(--danger); animation: pulse 1.5s infinite; }
.ri-voice-btn.recording { background: var(--danger) !important; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
.voice-status { margin-top: 10px; font-size: 13px; color: var(--text-secondary); }
.voice-transcript {
  margin-top: 12px; padding: 12px; background: #fff; border-radius: 8px;
  border: 1px solid var(--border); font-size: 14px; text-align: left;
  min-height: 40px; max-height: 120px; overflow-y: auto; display: none;
}
.voice-transcript.show { display: block; }
.voice-parsed {
  margin-top: 8px; padding: 12px; background: #ecfdf5; border-radius: 8px;
  border: 1px solid #6ee7b7; font-size: 13px; text-align: left; display: none;
}
.voice-parsed.show { display: block; }
.voice-parsed .item { margin-bottom: 4px; }

/* ========== 维修工程师卡片 ========== */
.tech-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; gap: 16px; transition: box-shadow 0.15s;
}
.tech-card:hover { box-shadow: var(--shadow-lg); }
.tech-info { display: flex; align-items: center; gap: 12px; }
.tech-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.tech-stats { display: flex; gap: 16px; font-size: 12px; color: var(--text-secondary); flex-wrap: wrap; }
.tech-stats span { font-weight: 600; color: var(--text); }
