* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background: #f1f5f9;
    color: #1e293b;
  }
  
  
  .page-header {
    text-align: center;
    padding: 40px 20px 20px;
  }
  
  
  .page-header h1 {
    font-size: 28px;
    font-weight: 700;
  }
  
  
  .page-header p {
    color: #64748b;
    margin-top: 8px;
    font-size: 15px;
  }
  
  
  .comparison {
    display: flex;
    gap: 32px;
    padding: 24px 32px 60px;
    max-width: 1600px;
    margin: 0 auto;
    align-items: flex-start;
  }
  
  
  .panel {
    flex: 1;
    min-width: 0;
  }
  
  
  .panel-label {
    text-align: center;
    margin-bottom: 16px;
  }
  
  
  .panel-label span {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  
  .panel-label .before {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
  }
  
  
  .panel-label .after {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
  }
  
  
  .caption {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: #64748b;
    font-style: italic;
    line-height: 1.5;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  
  
  .mockup {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
  }
  
  
  /* ===== BEFORE (Original) ===== */
  
  
  .old {
    display: flex;
    min-height: 580px;
  }
  
  
  .old-main {
    flex: 3;
    padding: 20px;
  }
  
  
  .old-sidebar {
    flex: 1;
    background: #f8fafc;
    border-left: 1px solid #e2e8f0;
    padding: 16px;
    min-width: 180px;
  }
  
  
  .old-breadcrumb {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
  }
  
  
  .old-breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
  }
  
  
  .old-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  
  .old-section-label {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 12px 0 8px;
  }
  
  
  .old-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  
  .old-tile {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: background .15s;
  }
  
  
  .old-tile:hover {
    background: #e2e8f0;
  }
  
  
  .old-tile .icon {
    font-size: 22px;
    margin-bottom: 4px;
    display: block;
  }
  
  
  .old-tile .label {
    font-size: 11px;
    color: #475569;
    line-height: 1.3;
  }
  
  
  .old-sidebar-title {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    background: #ededed;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
  }
  
  
  .old-product {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
  }
  
  
  .old-product:last-child {
    border-bottom: none;
  }
  
  
  .old-product .name {
    font-size: 12px;
    font-weight: 600;
  }
  
  
  .old-product .provider {
    font-size: 11px;
    color: #64748b;
  }
  
  
  .old-product .date {
    font-size: 10px;
    color: #94a3b8;
    font-style: italic;
    margin-top: 2px;
  }
  
  
  /* ===== AFTER (Redesigned) ===== */
  
  
  .new {
    padding: 24px;
  }
  
  
  .new-breadcrumb {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 16px;
  }
  
  
  .new-breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
  }
  
  
  .new-overview {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  
  .new-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  
  .new-icon-circle.blue {
    background: #dbeafe;
    color: #2563eb;
  }
  
  
  .new-icon-circle.green {
    background: #dcfce7;
    color: #16a34a;
  }
  
  
  .new-icon-circle.purple {
    background: #f3e8ff;
    color: #7c3aed;
  }
  
  
  .new-icon-circle.orange {
    background: #fff7ed;
    color: #ea580c;
  }
  
  
  .new-icon-circle.teal {
    background: #ccfbf1;
    color: #0d9488;
  }
  
  
  .new-overview-info {
    flex: 1;
  }
  
  
  .new-overview-name {
    font-size: 20px;
    font-weight: 700;
  }
  
  
  .new-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
  }
  
  
  .new-badge.active {
    background: #dcfce7;
    color: #15803d;
  }
  
  
  .new-overview-meta {
    display: flex;
    gap: 24px;
    margin-top: 8px;
    flex-wrap: wrap;
  }
  
  
  .new-overview-meta .item {
    font-size: 12px;
    color: #64748b;
  }
  
  
  .new-overview-meta .item strong {
    color: #1e293b;
    font-weight: 600;
  }
  
  
  .new-edit-btn {
    padding: 6px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  
  .new-section-title {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 16px 0 10px;
  }
  
  
  .new-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }
  
  
  .new-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
  }
  
  
  .new-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
  }
  
  
  .new-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  
  .new-card-title {
    font-size: 14px;
    font-weight: 600;
  }
  
  
  .new-card-desc {
    font-size: 12px;
    color: #64748b;
  }
  
  
  .new-card-stats {
    display: flex;
    gap: 20px;
    margin-top: 10px;
  }
  
  
  .new-stat {
    text-align: center;
  }
  
  
  .new-stat .num {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    display: block;
  }
  
  
  .new-stat .lbl {
    font-size: 11px;
    color: #64748b;
  }
  
  
  .new-emp-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
  }
  
  
  .new-emp-main {
    flex: 7;
  }
  
  
  .new-emp-aside {
    flex: 3;
    border-left: 1px solid #e5e7eb;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  
  
  .new-status-bar {
    height: 8px;
    border-radius: 4px;
    display: flex;
    overflow: hidden;
    margin: 10px 0 6px;
  }
  
  
  .new-status-bar .seg {
    height: 100%;
  }
  
  
  .new-status-bar .complete {
    background: #16a34a;
  }
  
  
  .new-status-bar .updating {
    background: #eab308;
  }
  
  
  .new-status-bar .not-started {
    background: #3b82f6;
  }
  
  
  .new-status-bar .no-account {
    background: #e2e8f0;
  }
  
  
  .new-legend {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  
  .new-legend .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
    vertical-align: middle;
  }
  
  
  .new-legend span {
    font-size: 11px;
    color: #64748b;
  }
  
  
  .new-census-btn {
    padding: 8px 16px;
    background: #213a5c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
  }
  
  
  .new-docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 16px;
  }
  
  
  .new-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
  }
  
  
  .new-action-btn {
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    color: #475569;
    cursor: pointer;
  }
  
  
  .new-action-btn.danger {
    color: #dc2626;
    border-color: #fecaca;
  }
  
  
  .avatar-stack {
    display: flex;
  }
  
  
  .avatar-stack .av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
  }
  
  
  .avatar-stack .av:first-child {
    margin-left: 0;
  }
  
  
  .av-1 {
    background: #3b82f6;
  }
  
  
  .av-2 {
    background: #8b5cf6;
  }
  
  
  .av-3 {
    background: #ec4899;
  }
  
  
  .av-more {
    background: #94a3b8;
    font-size: 9px;
  }
  
  
  
  