.phone-gallery { display: grid; grid-template-columns: repeat(3, minmax(280px, 360px)); gap: 24px; justify-content: center; align-items: start; }
.phone-label { margin-bottom: 9px; color: var(--gray-600); text-align: center; font-weight: 600; }
.phone { width: 100%; aspect-ratio: 390 / 844; border: 8px solid #1f2937; border-radius: 28px; background: #f3f4f6; box-shadow: var(--shadow-md); overflow: hidden; }
.phone-status { height: 26px; padding: 7px 16px 0; display: flex; justify-content: space-between; background: white; color: #111827; font-size: 9px; font-weight: 600; }
.phone-head { height: 50px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; background: white; border-bottom: 1px solid var(--gray-200); }
.phone-head strong { font-size: 14px; }
.phone-body { height: calc(100% - 126px); padding: 12px; overflow: hidden; }
.phone-bottom { height: 50px; display: grid; grid-template-columns: repeat(3, 1fr); background: white; border-top: 1px solid var(--gray-200); }
.phone-bottom span { display: grid; place-items: center; color: var(--gray-400); font-size: 9px; }
.phone-bottom span.active { color: var(--blue-600); font-weight: 600; }
.phone-tabs { display: flex; gap: 16px; margin-bottom: 10px; border-bottom: 1px solid var(--gray-200); }
.phone-tab { padding: 0 0 8px; color: var(--gray-500); font-size: 10px; }
.phone-tab.active { color: var(--blue-600); border-bottom: 2px solid var(--blue-600); font-weight: 600; }
.phone-task { padding: 10px; margin-bottom: 8px; border: 1px solid var(--gray-200); border-radius: var(--radius); background: white; }
.phone-task-title { display: flex; justify-content: space-between; gap: 8px; font-size: 11px; font-weight: 600; }
.phone-task-meta { margin-top: 6px; color: var(--gray-500); font-size: 9px; line-height: 1.5; }
.phone-action { margin-top: 8px; padding-top: 7px; border-top: 1px solid var(--gray-200); color: var(--blue-600); font-size: 9px; text-align: right; }
.phone-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.phone-kpi { padding: 10px; border: 1px solid var(--gray-200); border-radius: var(--radius); background: white; }
.phone-kpi small { color: var(--gray-500); font-size: 8px; }
.phone-kpi b { display: block; margin-top: 6px; font-size: 16px; }
.phone-chart { height: 142px; margin-top: 10px; padding: 10px; border: 1px solid var(--gray-200); border-radius: var(--radius); background: white; }
.mini-bars { height: 92px; display: flex; align-items: end; gap: 8px; padding-top: 12px; }
.mini-bar { flex: 1; background: #bfdbfe; border-radius: 3px 3px 0 0; }
.mini-bar.current { background: var(--blue-600); }
.phone-diff { display: grid; grid-template-columns: 76px 1fr auto; gap: 6px; padding: 8px 0; border-bottom: 1px solid var(--gray-200); font-size: 9px; }
.phone-license { padding: 9px; margin-top: 8px; border: 1px solid var(--gray-200); border-radius: var(--radius); background: white; font-size: 9px; }
.phone-note { margin-top: 8px; padding: 8px; border-radius: var(--radius); background: #eff6ff; color: #1e4d78; font-size: 9px; line-height: 1.5; }
@media (max-width: 1180px) { .phone-gallery { grid-template-columns: repeat(2, minmax(280px, 360px)); } }
@media (max-width: 760px) { .phone-gallery { grid-template-columns: minmax(280px, 390px); } }
