:root {
  --yunige-navy: #27206f;
  --yunige-navy-dark: #1d1757;
  --yunige-blue: #2d7ed3;
  --yunige-blue-light: #eaf3ff;
  --yunige-pink: #e97ab0;
  --yunige-orange: #d85d1f;
  --yunige-bg: #f3f3f3;
  --yunige-surface: #ffffff;
  --yunige-surface-soft: #fafafa;
  --yunige-border: #d7dde8;
  --yunige-text: #22304a;
  --yunige-muted: #70809a;
  --yunige-shadow: 0 8px 24px rgba(39, 32, 111, 0.08);
  --yunige-radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: var(--yunige-bg);
  color: var(--yunige-text);
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.hidden {
  display: none !important;
}

.yunige-shell {
  min-height: 100vh;
  background: var(--yunige-bg);
}

.yunige-topbar {
  background: #efefef;
  text-align: center;
  padding: 10px 20px 18px;
  border-bottom: 1px solid #e4e4e4;
}

.yunige-topbar small {
  display: block;
  color: #666;
  margin-bottom: 8px;
  font-size: 12px;
}

.yunige-logo {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--yunige-navy);
  line-height: 1;
}

.yunige-logo span {
  color: var(--yunige-pink);
}

.yunige-blue-line {
  height: 6px;
  background: var(--yunige-blue);
}

.yunige-alert {
  background: var(--yunige-orange);
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
}

.yunige-main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.yunige-card {
  background: var(--yunige-surface);
  border: 1px solid var(--yunige-border);
  border-radius: var(--yunige-radius);
  box-shadow: var(--yunige-shadow);
}

.page-title {
  margin: 0;
  color: var(--yunige-navy);
}

.page-subtitle {
  margin: 8px 0 0;
  color: var(--yunige-muted);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--yunige-navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--yunige-navy-dark);
}

.btn-secondary {
  background: var(--yunige-blue-light);
  color: var(--yunige-blue);
}

.btn-secondary:hover {
  background: #dcecff;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.status-new {
  background: #e8f2ff;
  color: #2d7ed3;
}

.status-pricing {
  background: #fff4df;
  color: #ba7a00;
}

.status-quoted {
  background: #eaf8ef;
  color: #1f8b4d;
}

.status-won {
  background: #f3eefe;
  color: #6c3fd1;
}