.account-page { min-height: 100vh; padding: 56px 20px 110px; background: #f3f6fb; color: #1f2937; }
.account-shell { width: min(960px, 100%); margin: 0 auto; }
.account-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 28px; }
.account-brand img { width: 112px; display: block; }
.account-head h1 { margin: 8px 0 4px; font-size: clamp(24px, 4vw, 34px); color: #172b4d; }
.account-head p { margin: 0; color: #68758a; }
.account-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.account-btn { display: inline-flex; justify-content: center; align-items: center; border: 0; border-radius: 9px; padding: 11px 16px; background: #385bce; color: #fff; font: 700 13px inherit; cursor: pointer; }
.account-btn--light { background: #fff; color: #385bce; border: 1px solid #ced8ea; }
.account-card { padding: 28px; background: #fff; border: 1px solid #dfe6f1; border-radius: 18px; box-shadow: 0 10px 30px rgba(31, 52, 92, .07); }
.account-card + .account-card { margin-top: 18px; }
.account-card h2 { margin: 0 0 18px; font-size: 19px; color: #172b4d; }
.account-profile { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.account-stat { padding: 16px; border-radius: 12px; background: #f5f8fd; }
.account-stat small { display: block; margin-bottom: 6px; color: #7b879a; }
.account-stat strong { overflow-wrap: anywhere; }
.account-form { display: grid; gap: 16px; }
.account-field { display: grid; gap: 7px; }
.account-field label { font-size: 13px; font-weight: 700; }
.account-field select { width: 100%; padding: 13px; border: 1px solid #ced8e6; border-radius: 9px; background: #fff; font: inherit; }
.account-notice { display: none; margin-bottom: 16px; padding: 12px 14px; border-radius: 9px; font-size: 13px; }
.account-notice--error { color: #b42318; background: #fef3f2; }
.account-notice--success { color: #067647; background: #ecfdf3; }
.account-list { display: grid; gap: 10px; }
.account-row { display: grid; grid-template-columns: 1.4fr .8fr .8fr auto; align-items: center; gap: 14px; padding: 16px; border: 1px solid #e4eaf3; border-radius: 11px; }
.account-row strong { color: #172b4d; }
.account-row small { color: #7b879a; }
.account-status { display: inline-flex; width: fit-content; padding: 5px 9px; border-radius: 999px; background: #edf3ff; color: #385bce; font-size: 12px; font-weight: 700; }
.account-empty { padding: 30px; text-align: center; color: #7b879a; background: #f8fafc; border-radius: 12px; }
@media (max-width: 680px) {
  .account-head { align-items: flex-start; flex-direction: column; }
  .account-profile { grid-template-columns: 1fr; }
  .account-row { grid-template-columns: 1fr; }
  .account-card { padding: 20px; }
}
