  /* ── FORMS ── */
  .form-group { margin-bottom: 18px; }
  .form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .form-label .req { color: var(--gold); margin-left: 2px; }

  .form-input, .form-select, textarea.form-input {
    width: 100%;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-input:focus, .form-select:focus, textarea.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
  }
  .form-input::placeholder { color: var(--text3); }
  .form-input:disabled, .form-input[readonly] { opacity: 0.6; cursor: not-allowed; }
  textarea.form-input { resize: vertical; min-height: 90px; line-height: 1.55; }
  .form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a0a0' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

  .form-help { font-size: 12px; color: var(--text3); margin-top: 6px; line-height: 1.5; }

  .form-input-icon { position: relative; }
  .form-input-icon .form-input { padding-left: 44px; }
  .form-input-icon .icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text3); font-size: 16px; pointer-events: none; }

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

  .checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    cursor: pointer;
  }
  .cb {
    width: 20px; height: 20px;
    border-radius: 5px;
    border: 1.5px solid var(--border2);
    background: var(--surface2);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
    color: transparent;
    font-size: 13px;
    font-weight: 700;
  }
  .checkbox-row.on .cb { background: var(--gradient-h); border-color: transparent; color: white; }
  .checkbox-row .cb-text { font-size: 14px; line-height: 1.5; }
  .checkbox-row .cb-sub { font-size: 12px; color: var(--text2); margin-top: 2px; }

  .radio-group { display: flex; gap: 8px; flex-wrap: wrap; }
  .radio-pill {
    padding: 10px 18px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--surface2);
    font-size: 13px;
    cursor: pointer;
    color: var(--text2);
    transition: all 0.15s;
    font-weight: 500;
  }
  .radio-pill:hover { border-color: var(--border2); color: var(--text); }
  .radio-pill.on { background: rgba(245,166,35,0.1); border-color: var(--gold); color: var(--gold); }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.18s;
    text-decoration: none;
    white-space: nowrap;
  }
  .btn:disabled { opacity: 0.55; cursor: not-allowed; }
  .btn-primary { background: var(--gradient-h); color: white; }
  .btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,166,35,0.18); }
  .btn-primary.full, .btn-secondary.full, .btn-danger.full { width: 100%; padding: 16px; font-size: 16px; border-radius: var(--radius); }
  .btn-secondary { background: var(--surface2); border: 1px solid var(--border); color: var(--text); }
  .btn-secondary:hover:not(:disabled) { border-color: var(--border2); background: var(--surface3); }
  .btn-ghost { background: transparent; color: var(--text2); padding: 8px 12px; font-size: 14px; }
  .btn-ghost:hover:not(:disabled) { color: var(--text); background: var(--surface2); border-radius: var(--radius-sm); }
  .btn-danger { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: var(--error); }
  .btn-danger:hover:not(:disabled) { background: rgba(239,68,68,0.18); }
  .btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 8px; }
  .btn-xs { padding: 6px 12px; font-size: 12px; border-radius: 6px; }
  .btn-icon { width: 36px; height: 36px; padding: 0; border-radius: 9px; }

  .divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 22px 0;
    color: var(--text3);
    font-size: 13px;
  }
  .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

  /* ── CARDS ── */
  .card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-bottom: 22px;
  }
  .card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; gap: 16px; flex-wrap: wrap; }
  .card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.018em; }
  .card-subtitle { font-size: 13px; color: var(--text2); margin-top: 4px; line-height: 1.5; }
  .card-section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--text); }

  /* ── ALERTS ── */
  .alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .alert strong { font-weight: 700; }
  .alert-info { background: rgba(99,179,237,0.08); border: 1px solid rgba(99,179,237,0.2); color: #b8d8ee; }
  .alert-success { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: #86efac; }
  .alert-warning { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25); color: #fcd34d; }
  .alert-error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: #fca5a5; }
  .alert-gradient { background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(214,58,138,0.1)); border: 1px solid rgba(245,166,35,0.25); color: #ffd28a; }

  /* ── PERSISTENT BANNERS ── */
  .global-banner {
    padding: 12px 22px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid;
  }
  .banner-error { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.35); color: #fca5a5; }
  .banner-warning { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); color: #fcd34d; }
  .banner-error a, .banner-warning a { color: inherit; text-decoration: underline; font-weight: 700; }

  /* ── STATS ── */
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
  .stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    overflow: hidden;
  }
  .stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-h); }
  .stat-icon { font-size: 22px; margin-bottom: 12px; }
  .stat-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 700; line-height: 1; margin-bottom: 6px; letter-spacing: -0.03em; }
  .stat-label { font-size: 12px; color: var(--text2); font-weight: 500; }
  .stat-change { font-size: 11px; margin-top: 6px; display: flex; align-items: center; gap: 4px; font-weight: 600; }
  .stat-up { color: var(--success); }
  .stat-down { color: var(--error); }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    overflow-y: auto;
  }
  .modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px;
    width: 100%;
    max-width: 520px;
    animation: fadeUp 0.3s ease;
    margin: auto;
  }
  .modal.wide { max-width: 720px; }
  .modal-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.025em; }
  .modal-sub { font-size: 14px; color: var(--text2); margin-bottom: 24px; line-height: 1.55; }
  .modal-close { position: absolute; top: 18px; right: 18px; background: var(--surface2); border: 1px solid var(--border); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; color: var(--text2); font-size: 16px; display: flex; align-items: center; justify-content: center; }

  /* ── NOTIFICATION ── */
  .notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: slideIn 0.3s ease;
    max-width: 360px;
  }
  @keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
  .notification-icon { font-size: 18px; }
  .notification-text { font-size: 14px; font-weight: 600; }
  .notification-sub { font-size: 12px; color: var(--text2); margin-top: 2px; }

