
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 60%, #e0f2fe 100%);
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 24px;
  }

  .header {
    text-align: center;
    margin-bottom: 32px;
  }
  .logo img {
    height: 56px;
    margin-bottom: 12px;
  }
  .subtitle {
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }

  .user-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    color: white;
    font-weight: 600;
  }
  .user-bar span { opacity: 0.85; }
  .btn-logout {
    background: rgba(255,255,255,0.25);
    border: none;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-logout:hover { background: rgba(255,255,255,0.4); }

  .btn-admin {
    background: rgba(255,255,255,0.25);
    border: none;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-admin:hover { background: rgba(255,255,255,0.4); }

  .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 1080px;
    width: 100%;
  }

  .suite-card {
    background: white;
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 16px 50px rgba(3,105,161,0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid transparent;
  }
  .suite-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(3,105,161,0.3);
    border-color: #0ea5e9;
  }
  .suite-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    padding: 22px 28px 20px;
    margin: -30px -28px 0 -28px;
    border-radius: 18px 18px 0 0;
  }
  /* Colored header variants */
  .suite-card-blue .suite-header {
    background: linear-gradient(135deg, #4d2f43 0%, #714B67 100%);
  }
  .suite-card-blue:hover {
    border-color: #714B67;
    box-shadow: 0 24px 60px rgba(113,75,103,0.3);
  }
  .suite-card-gold .suite-header {
    background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
  }
  .suite-copy {
    min-width: 0;
  }
  .suite-title {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.2px;
  }
  .suite-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    text-align: center;
  }
  .suite-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .suite-actions.erp-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mini-card {
    text-decoration: none;
    border: 1.5px solid #dbeafe;
    border-radius: 16px;
    padding: 24px 22px 22px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .mini-card:hover {
    border-color: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(14,165,233,0.10);
  }

  .card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 6px;
  }
  .card-icon.blue { background: linear-gradient(135deg, #4d2f43, #714B67); }
  .card-icon.orange { background: linear-gradient(135deg, #ea580c, #f97316); }
  .card-icon.gold { background: linear-gradient(135deg, #b45309, #f59e0b); }

  .card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
  }
  .card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    max-width: 320px;
  }
  .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #0369a1;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 10px;
    transition: background 0.2s;
    width: fit-content;
    margin-top: 6px;
  }
  .mini-card:hover .card-cta { background: #e0f2fe; }
  .mini-card-blue .card-cta { color: #714B67; }
  .mini-card-blue:hover .card-cta { background: #f3eaf1; }
  .card-cta.orange-cta { color: #ea580c; }
  .mini-card:hover .card-cta.orange-cta { background: #fff7ed; }

  /* Mini-card color variants */
  .mini-card-blue {
    background: linear-gradient(180deg, #f7f0f4, #ede3eb);
    border-color: #c9a5bc;
  }
  .mini-card-blue:hover {
    border-color: #714B67;
    box-shadow: 0 12px 26px rgba(113,75,103,0.15);
  }
  .mini-card-orange {
    background: linear-gradient(180deg, #fff7ed, #ffedd5);
    border-color: #fed7aa;
  }
  .mini-card-orange:hover {
    border-color: #f97316;
    box-shadow: 0 12px 26px rgba(249,115,22,0.12);
  }
  .mini-card-gold {
    background: linear-gradient(180deg, #fffbeb, #fef3c7);
    border-color: #fde68a;
  }
  .mini-card-gold:hover {
    border-color: #f59e0b;
    box-shadow: 0 12px 26px rgba(245,158,11,0.12);
  }
  .mini-card-green {
    background: linear-gradient(180deg, #f0fdf4, #dcfce7);
    border-color: #bbf7d0;
  }
  .mini-card-green:hover {
    border-color: #16a34a;
    box-shadow: 0 12px 26px rgba(22,163,74,0.12);
  }
  .card-icon.green { background: linear-gradient(135deg, #15803d, #22c55e); }
  .card-cta.green-cta { color: #15803d; }
  .mini-card-green:hover .card-cta.green-cta { background: #dcfce7; }

  .suite-card.madper {
    justify-content: space-between;
  }
  .suite-card.madper .suite-actions {
    display: flex;
    justify-content: center;
  }
  .suite-card.madper .suite-actions .mini-card {
    width: calc(50% - 7px);
  }
  @media (max-width: 1100px) {
    .suite-actions.erp-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 700px) {
    .cards-grid { max-width: 760px; }
    .suite-actions.erp-actions { grid-template-columns: 1fr; }
  }
