@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --bg:          #04060e;
  --bg-card:     #080f1c;
  --bg-elevated: #0d1629;
  --bg-input:    #131e30;
  --border:      #182133;
  --border-mid:  #1e2a3d;
  --text:        #e8edf5;
  --text-sub:    #8fa3bf;
  --text-dim:    #4a5a6e;
  /* ── España brand ─────────────────────────────────────── */
  --espana:      #DA5100;
  --espana-dim:  #A83E00;
  --espana-glow: rgba(218,81,0,.14);
  /* ── Generic palette ──────────────────────────────────── */
  --blue:        #3b82f6;
  --blue-dim:    #1d4ed8;
  --blue-glow:   rgba(59,130,246,.12);
  --gold:        #f59e0b;
  --green:       #10b981;
  --red:         #ef4444;
  --amber:       #f59e0b;
  --purple:      #8b5cf6;
  --sky:         #0ea5e9;
  --nav-h:       60px;
  --r:           8px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 13.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }

/* ── TOP BAR — España flag-inspired (red → gold → red) ── */
.top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--espana) 0%, var(--gold) 50%, var(--espana) 100%);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(4,6,14,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 22px;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.nav-brand:hover { text-decoration: none; }
.nav-logo {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--espana) 0%, var(--espana-dim) 100%);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(218,81,0,.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  padding: 5px 11px;
  border-radius: 6px;
  color: var(--text-sub);
  font-weight: 500;
  font-size: 13px;
  transition: all .15s;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--blue-glow);
  color: var(--blue);
  text-decoration: none;
}

.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-user  { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-sub); }
.nav-user img { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-mid); }

/* Notification badge */
.badge-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  top: -2px; right: -4px;
}

/* ── LAYOUT ── */
main { max-width: 1100px; margin: 0 auto; padding: 28px 22px; }

.page-hdr { margin-bottom: 24px; }
.page-hdr h1 { font-size: 22px; font-weight: 800; margin-bottom: 3px; letter-spacing: -.01em; }
.page-hdr p  { color: var(--text-sub); font-size: 13px; }

/* ── HERO SECTION ── */
.hero {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 30px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '✈';
  position: absolute;
  right: 30px; top: 50%;
  transform: translateY(-50%);
  font-size: 96px;
  opacity: .03;
  pointer-events: none;
  line-height: 1;
}
.hero-label    { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); margin-bottom: 6px; }
.hero-airline  { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.hero-meta     { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.hero-chip {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  background: var(--blue-glow); color: var(--blue);
  border: 1px solid rgba(59,130,246,.2);
}
.hero-chip.gold { background: rgba(245,158,11,.1); color: var(--gold); border-color: rgba(245,158,11,.2); }
.hero-chip.dim  { background: var(--bg-input); color: var(--text-sub); border-color: var(--border-mid); }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
}
.card + .card { margin-top: 14px; }

.card-hdr {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.card-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text-sub);
}

/* ── GRID ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.g3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }

/* ── STAT CARDS ── */
.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  border-left: 3px solid var(--stat-c, var(--border-mid));
}
.stat-icon  { font-size: 18px; margin-bottom: 8px; }
.stat-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-dim); margin-bottom: 4px; }
.stat-val   { font-size: 28px; font-weight: 800; color: var(--text); line-height: 1; letter-spacing: -.01em; }
.stat-sub   { font-size: 11px; color: var(--text-sub); margin-top: 3px; }

/* ── ACTION CARDS ── */
.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.action-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  display: block;
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s, transform .15s;
  position: relative;
  overflow: hidden;
}
.action-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--ac, var(--blue));
  opacity: 0;
  transition: opacity .2s;
}
.action-card:hover {
  border-color: var(--border-mid);
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--text);
}
.action-card:hover::before { opacity: 1; }

.action-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  background: var(--ac-bg, var(--blue-glow));
}
.action-card-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.action-card-sub   { font-size: 12px; color: var(--text-sub); line-height: 1.4; }

/* ── NEXT BEST ACTION ── */
.nba-list { display: flex; flex-direction: column; gap: 8px; }

.nba-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 15px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9px;
  text-decoration: none; color: var(--text);
  transition: all .15s;
}
.nba-item:hover {
  border-color: var(--border-mid);
  background: var(--bg-elevated);
  text-decoration: none; color: var(--text);
  transform: translateX(2px);
}
.nba-item-icon { font-size: 18px; flex-shrink: 0; width: 28px; text-align: center; }
.nba-item-body { flex: 1; }
.nba-item-title { font-size: 13px; font-weight: 600; line-height: 1.3; }
.nba-item-sub   { font-size: 11px; color: var(--text-sub); margin-top: 1px; }
.nba-item-arrow { color: var(--text-dim); flex-shrink: 0; font-size: 16px; }

/* ── SUGGESTION CARDS ── */
.suggestion-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 14px; margin-bottom: 28px; }

.suggestion-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.suggestion-card:hover {
  border-color: var(--blue-dim);
  box-shadow: 0 0 0 1px rgba(59,130,246,.2), 0 4px 20px rgba(0,0,0,.3);
}

.suggestion-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.suggestion-airline { font-weight: 700; font-size: 14px; }
.suggestion-iata    { font-size: 11px; color: var(--text-sub); }

.match-score {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  background: var(--blue-glow); color: var(--blue);
  border: 1px solid rgba(59,130,246,.25);
}
.match-score.high   { background: rgba(16,185,129,.1); color: var(--green); border-color: rgba(16,185,129,.25); }
.match-score.medium { background: rgba(245,158,11,.1); color: var(--amber); border-color: rgba(245,158,11,.25); }

.suggestion-routes {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin: 10px 0;
}
.route-chip {
  background: var(--bg-input); border: 1px solid var(--border-mid);
  border-radius: 4px; padding: 2px 8px;
  font-size: 11px; font-weight: 600; color: var(--text-sub);
  font-family: monospace;
}

.suggestion-reasons { font-size: 11px; color: var(--text-sub); line-height: 1.5; margin-bottom: 12px; }
.suggestion-reasons li { list-style: none; padding-left: 14px; position: relative; }
.suggestion-reasons li::before { content: '→'; position: absolute; left: 0; color: var(--blue-dim); }

/* ── TABLE ── */
.tbl-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead th {
  text-align: left; padding: 9px 12px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-dim); border-bottom: 1px solid var(--border); white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--border); transition: background .1s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,.015); }
tbody td { padding: 11px 12px; vertical-align: middle; font-size: 13px; }
.td-sub { color: var(--text-sub); }

/* ── STATUS / RISK BADGES ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 9px; border-radius: 100px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap;
}
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

.badge-pending   { background: rgba(245,158,11,.1); color: #f59e0b; }
.badge-accepted  { background: rgba(16,185,129,.1); color: #10b981; }
.badge-approved  { background: rgba(16,185,129,.1); color: #10b981; }
.badge-available { background: rgba(59,130,246,.1); color: #60a5fa; }
.badge-referred  { background: rgba(139,92,246,.1); color: #a78bfa; }
.badge-declined  { background: rgba(239,68,68,.1);  color: #ef4444; }
.badge-denied    { background: rgba(239,68,68,.1);  color: #ef4444; }
.badge-allocated { background: rgba(245,158,11,.1); color: #f59e0b; }
.badge-withdrawn { background: rgba(82,96,112,.1);  color: #8fa3bf; }

/* Risk score badges */
.risk { display: inline-flex; align-items: center; gap: 4px; padding: 2px 9px; border-radius: 100px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.risk-low      { background: rgba(16,185,129,.1);  color: #10b981; }
.risk-medium   { background: rgba(245,158,11,.1);  color: #f59e0b; }
.risk-high     { background: rgba(239,68,68,.1);   color: #ef4444; }
.risk-flag     { background: rgba(239,68,68,.15);  color: #ef4444; animation: pulse 2s infinite; }
.risk-critical { background: rgba(120,0,0,.25);    color: #ff6b6b; animation: pulse 1s infinite; border: 1px solid rgba(239,68,68,.4); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .6; }
}

/* Verification level chips */
.vlevel { display: inline-flex; align-items: center; gap: 5px; padding: 2px 8px; border-radius: 5px; font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.vlevel-2 { background: rgba(245,158,11,.1);  color: #f59e0b; }
.vlevel-3 { background: rgba(239,68,68,.1);   color: #ef4444; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 15px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: none; transition: all .15s;
  text-decoration: none; white-space: nowrap;
}
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-sm  { padding: 5px 10px; font-size: 12px; }
.btn-lg  { padding: 11px 22px; font-size: 14px; }

.btn-primary { background: var(--espana); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--espana-dim); color: #fff; text-decoration: none; }

.btn-ghost { background: transparent; color: var(--text-sub); border: 1px solid var(--border-mid); }
.btn-ghost:hover:not(:disabled) { background: var(--bg-input); color: var(--text); text-decoration: none; }

.btn-danger { background: transparent; color: var(--red); border: 1px solid rgba(239,68,68,.3); }
.btn-danger:hover:not(:disabled) { background: rgba(239,68,68,.08); text-decoration: none; }

.btn-success { background: transparent; color: var(--green); border: 1px solid rgba(16,185,129,.3); }
.btn-success:hover:not(:disabled) { background: rgba(16,185,129,.08); text-decoration: none; }

.btn-amber { background: transparent; color: var(--amber); border: 1px solid rgba(245,158,11,.3); }
.btn-amber:hover:not(:disabled) { background: rgba(245,158,11,.08); text-decoration: none; }

/* ── FORMS ── */
.form-group { margin-bottom: 14px; }
label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--text-sub); margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: .04em;
}
input, textarea, select {
  width: 100%; background: var(--bg-input); border: 1px solid var(--border-mid);
  border-radius: 6px; padding: 8px 11px; color: var(--text); font-size: 13px;
  font-family: inherit; transition: border-color .15s; appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
textarea { resize: vertical; min-height: 76px; }
select option { background: var(--bg-card); }
.form-hint { font-size: 11px; color: var(--text-dim); margin-top: 3px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── ALERTS ── */
.alert { padding: 10px 14px; border-radius: var(--r); font-size: 13px; margin-bottom: 14px; border: 1px solid; }
.alert-info    { background: rgba(59,130,246,.07);  border-color: rgba(59,130,246,.2);  color: #93c5fd; }
.alert-success { background: rgba(16,185,129,.07);  border-color: rgba(16,185,129,.2);  color: #6ee7b7; }
.alert-warning { background: rgba(245,158,11,.07);  border-color: rgba(245,158,11,.2);  color: #fcd34d; }
.alert-error   { background: rgba(239,68,68,.07);   border-color: rgba(239,68,68,.2);   color: #fca5a5; }

/* ── DECISION ENGINE PANEL ── */
.analysis-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--r);
  padding: 16px;
}
.analysis-rec {
  display: inline-flex; align-items: center;
  padding: 7px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
}
.rec-accepted { background: rgba(16,185,129,.15); color: #10b981; border: 1px solid rgba(16,185,129,.3); }
.rec-referred { background: rgba(139,92,246,.15); color: #a78bfa; border: 1px solid rgba(139,92,246,.3); }
.rec-declined { background: rgba(239,68,68,.15);  color: #ef4444; border: 1px solid rgba(239,68,68,.3); }

.analysis-flags { display: flex; flex-direction: column; gap: 6px; }
.flag {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 8px 10px; border-radius: 6px; font-size: 12px; line-height: 1.4;
}
.flag::before { font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.flag-positive { background: rgba(16,185,129,.07);  color: #6ee7b7; }
.flag-info     { background: rgba(59,130,246,.07);  color: #93c5fd; }
.flag-warning  { background: rgba(245,158,11,.07);  color: #fcd34d; }
.flag-danger   { background: rgba(239,68,68,.08);   color: #fca5a5; }
.flag-critical { background: rgba(120,0,0,.2);      color: #ff6b6b; border: 1px solid rgba(239,68,68,.3); }

.flag-positive::before { content: '✓'; }
.flag-info::before     { content: 'ℹ'; }
.flag-warning::before  { content: '⚠'; }
.flag-danger::before   { content: '⚡'; }
.flag-critical::before { content: '🚫'; }

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 300; padding: 20px; backdrop-filter: blur(6px);
}
.modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: 12px; width: 100%; max-width: 440px; padding: 26px;
}
.modal-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.modal-sub   { font-size: 13px; color: var(--text-sub); margin-bottom: 20px; }
.modal-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 20px; }

.verify-tabs  { display: flex; gap: 2px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.verify-tab   { padding: 7px 14px; font-size: 12px; font-weight: 600; color: var(--text-sub); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; background: none; border-top: none; border-left: none; border-right: none; transition: all .15s; }
.verify-tab:hover { color: var(--text); }
.verify-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.verify-panel { display: none; }
.verify-panel.active { display: block; }

.code-input {
  font-family: 'Courier New', monospace;
  font-size: 22px;
  letter-spacing: .2em;
  text-align: center;
  padding: 12px;
  max-width: 220px;
  margin: 0 auto;
  display: block;
}

/* ── LOGIN ── */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  background: radial-gradient(ellipse at 50% -10%, rgba(218,81,0,.10) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 100%, rgba(245,158,11,.06) 0%, transparent 50%);
}
.login-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 38px 36px; width: 100%; max-width: 390px; text-align: center;
}
.login-logo {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--espana) 0%, var(--espana-dim) 100%);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(218,81,0,.3);
}
.login-title { font-size: 20px; font-weight: 800; margin-bottom: 5px; letter-spacing: -.01em; }
.login-sub   { color: var(--text-sub); font-size: 13px; margin-bottom: 24px; line-height: 1.5; }
.btn-discord { background: #5865f2; color: #fff; width: 100%; justify-content: center; font-size: 14px; padding: 12px; border-radius: 8px; }
.btn-discord:hover { background: #4752c4; color: #fff; text-decoration: none; }

.login-features {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--border);
}
.login-feature-chip {
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 100px;
  background: var(--bg-input); color: var(--text-dim);
  border: 1px solid var(--border);
}

/* ── ONBOARDING (REGISTER) ── */
.onboard-wrap { max-width: 540px; margin: 40px auto; }
.onboard-step { text-align: center; margin-bottom: 28px; }
.onboard-icon { font-size: 36px; margin-bottom: 12px; }
.onboard-title { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.onboard-sub   { color: var(--text-sub); font-size: 13px; }
.customer-number-preview {
  background: var(--bg-elevated); border: 1px solid var(--border-mid);
  border-radius: 8px; padding: 14px 18px; text-align: center; margin: 16px 0;
  font-family: 'Courier New', monospace; font-size: 20px; font-weight: 700;
  letter-spacing: .15em; color: var(--blue);
}

/* ── TABS ── */
.tabs      { display: flex; gap: 2px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.tab       { padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--text-sub); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; background: none; border-top: none; border-left: none; border-right: none; transition: all .15s; position: relative; }
.tab:hover { color: var(--text); }
.tab.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 600; }
.tab-panel  { display: none; }
.tab-panel.active { display: block; }

/* ── SECTION ── */
.section    { margin-bottom: 26px; }
.section-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.section-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-sub); }

/* ── EMPTY STATE ── */
.empty { text-align: center; padding: 48px 16px; color: var(--text-sub); }
.empty-icon { font-size: 32px; margin-bottom: 10px; }
.empty h3   { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.empty p    { font-size: 12px; }

/* ── MISC ── */
.cust-num { font-family: 'Courier New', monospace; font-size: 12px; background: var(--bg-input); border: 1px solid var(--border); padding: 2px 7px; border-radius: 4px; color: var(--text-sub); }
.offer-pending-label { font-size: 11px; color: var(--text-dim); font-style: italic; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  margin-top: 60px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 20px;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--text-sub);
  flex-shrink: 0; letter-spacing: -.01em;
}
.footer-brand .nav-logo { width: 22px; height: 22px; font-size: 11px; border-radius: 5px; }
.footer-center { flex: 1; text-align: center; font-size: 11px; color: var(--text-dim); }
.footer-links  { display: flex; gap: 18px; flex-shrink: 0; }
.footer-links a { font-size: 11px; color: var(--text-dim); text-decoration: none; }
.footer-links a:hover { color: var(--text-sub); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .action-grid { grid-template-columns: 1fr 1fr; }
  .g4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 14px; gap: 12px; }
  main { padding: 18px 14px; }
  .g2, .g3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .action-grid { grid-template-columns: 1fr 1fr; }
  .footer-center, .footer-links { display: none; }
  .hero { padding: 20px; }
  .hero-airline { font-size: 20px; }
}
@media (max-width: 480px) {
  .action-grid { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: 1fr 1fr; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 3px; }

@keyframes spin {
  to { transform: rotate(360deg); }
}
