/* ═══════════════════════════════════════════════
   PadelSuite v2 — Components Stylesheet
   Cards, Buttons, Forms, Modals, Badges, Charts
   ═══════════════════════════════════════════════ */

/* ══════════════ CARDS ══════════════ */
.card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.75rem;
  transition: border-color .2s;
}
.card:hover { border-color: var(--border2); }
.card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; gap: .75rem; flex-wrap: wrap;
}
.card-title { font-size: 14px; font-weight: 600; color: var(--white2); letter-spacing: .01em; }
.card-sub { font-size: 12.5px; color: var(--white3); margin-top: 3px; }

/* ══════════════ STAT CARDS ══════════════ */
.stat-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem 1.75rem;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.stat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
  opacity: 0; transition: opacity .2s;
}
.stat-card:hover { border-color: var(--border2); transform: translateY(-1px); }
.stat-card:hover::after { opacity: 1; }
.stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white3); margin-bottom: 10px;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif; font-size: 34px;
  font-weight: 500; color: var(--white); line-height: 1; margin-bottom: 6px;
}
.stat-delta { font-size: 12px; color: var(--white3); }
.stat-delta.up  { color: var(--green); }
.stat-delta.dn  { color: var(--red); }
.stat-icon {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
}

/* ══════════════ FORMS ══════════════ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--white3);
}
.form-input, .form-select {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2); border-radius: var(--r-sm);
  color: var(--white); font-family: 'Outfit', sans-serif; font-size: 14px;
  outline: none; transition: border-color .18s, background .18s, box-shadow .18s;
  appearance: none;
}
.form-input::placeholder { color: var(--white4); }
.form-input:focus, .form-select:focus {
  border-color: rgba(76,175,80,.5);
  background: rgba(76,175,80,.07);
  box-shadow: 0 0 0 3px rgba(76,175,80,.12);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a839a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.form-select option { background: var(--charcoal); color: var(--white); }
.field-hint { font-size: 11.5px; color: var(--white4); margin-top: 4px; }

/* ══════════════ SEARCHABLE DROPDOWN ══════════════ */
.custom-select-wrap { position: relative; }
.custom-drop {
  display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 500;
  background: var(--navy2); border: 1px solid var(--border2); border-radius: var(--r-sm);
  max-height: 220px; overflow-y: auto; box-shadow: 0 12px 40px rgba(0,0,0,.6);
}
.custom-drop.open { display: block; }
.custom-drop-item {
  padding: 10px 14px; font-size: 13.5px; color: var(--white2); cursor: pointer;
  transition: background .12s; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.custom-drop-item:last-child { border-bottom: none; }
.custom-drop-item:hover { background: var(--gold-dim); color: var(--gold2); }
.custom-drop-item .flag { font-size: 16px; flex-shrink: 0; }
.custom-drop-empty { padding: 14px; font-size: 13px; color: var(--white4); text-align: center; }

/* ══════════════ BUTTONS ══════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 13.5px; font-weight: 500;
  padding: 10px 20px; border-radius: var(--r-sm); cursor: pointer;
  transition: all .18s ease; border: none; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--navy); font-weight: 600;
  box-shadow: 0 4px 16px rgba(76,175,80,.25);
}
.btn-gold:hover  { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(76,175,80,.35); }
.btn-gold:active { transform: translateY(0); }
.btn-gold:disabled { opacity: .4; cursor: not-allowed; transform: none; filter: none; box-shadow: none; }
.btn-gold.full { width: 100%; margin-top: 1.25rem; }
.btn-ghost {
  background: rgba(255,255,255,.05); color: var(--white2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }
.btn-ghost.full { width: 100%; }
.btn-outline-gold {
  background: var(--gold-dim); color: var(--gold2);
  border: 1px solid rgba(76,175,80,.25);
}
.btn-outline-gold:hover { background: rgba(76,175,80,.2); }

/* ══════════════ BADGES ══════════════ */
.badge {
  display: inline-flex; align-items: center; padding: 3px 10px;
  border-radius: 99px; font-size: 11px; font-weight: 600; letter-spacing: .04em; white-space: nowrap;
}
.badge-gold  { background: var(--gold-dim);  color: var(--gold2); border: 1px solid rgba(76,175,80,.2); }
.badge-green { background: var(--green-dim); color: var(--green); border: 1px solid rgba(45,212,160,.2); }
.badge-red   { background: var(--red-dim);   color: var(--red);   border: 1px solid rgba(240,96,96,.2); }
.badge-amber { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(240,160,80,.2); }
.badge-blue  { background: var(--blue-dim);  color: var(--blue);  border: 1px solid rgba(91,156,246,.2); }
.badge-dim   { background: rgba(255,255,255,.05); color: var(--white3); border: 1px solid var(--border2); }

/* ══════════════ EMPTY STATE ══════════════ */
.empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 5rem 2rem; background: var(--panel);
  border: 1px solid var(--border); border-radius: var(--r);
}
.empty-icon { margin-bottom: 1.25rem; opacity: .25; }
.empty h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 500; color: var(--white2); margin-bottom: .5rem;
}
.empty p { font-size: 13.5px; color: var(--white3); line-height: 1.7; max-width: 340px; }

/* ══════════════ LOADING ══════════════ */
.loading {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem; padding: 4rem 2rem; color: var(--white3); font-size: 14px; text-align: center;
}
.spin {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border2); border-top-color: var(--gold);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-label { color: var(--white3); font-size: 13px; }

/* ══════════════ AI OUTPUT BLOCK ══════════════ */
.ai-block {
  background: linear-gradient(135deg, rgba(76,175,80,.08) 0%, transparent 80%);
  border: 1px solid rgba(76,175,80,.2); border-radius: var(--r); padding: 1.5rem;
}
.ai-block h4 {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.ai-block h4::before { content: '✦'; font-size: 8px; }
.ai-block p  { font-size: 13.5px; line-height: 1.75; color: var(--white2); margin-bottom: 8px; }
.ai-block ul { padding-left: 18px; }
.ai-block li { font-size: 13.5px; line-height: 1.75; color: var(--white3); margin-bottom: 4px; }

/* ══════════════ VIABILITY SCORE RING ══════════════ */
.score-wrap {
  width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 500;
}
.score-wrap.hi { background: rgba(45,212,160,.1); color: var(--green); border: 2px solid rgba(45,212,160,.3); }
.score-wrap.mi { background: var(--amber-dim); color: var(--amber); border: 2px solid rgba(240,160,80,.3); }
.score-wrap.lo { background: var(--red-dim); color: var(--red); border: 2px solid rgba(240,96,96,.3); }
.score-lbl { font-size: 9px; font-family: 'Outfit',sans-serif; font-weight: 600; letter-spacing: .06em; opacity: .65; }

/* ══════════════ P&L TABLE ══════════════ */
.pl-section {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white4); padding: 14px 0 8px; border-bottom: 1px solid var(--border2);
}
.pl-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13.5px;
}
.pl-row:last-of-type { border-bottom: none; }
.pl-row.tot {
  font-weight: 600; font-size: 14px;
  border-top: 1px solid var(--border2); padding-top: 12px; margin-top: 4px;
}
.pl-row .lbl { color: var(--white2); }
.pl-row .amt { color: var(--white); font-variant-numeric: tabular-nums; }
.pl-row.tot .amt.gr { color: var(--green); }
.pl-row.tot .amt.rd { color: var(--red); }
.amt-neg { color: var(--red) !important; opacity: .8; }

/* ══════════════ PROGRESS BARS ══════════════ */
.prog-row { display: flex; align-items: center; gap: 12px; margin-bottom: 11px; }
.prog-lbl  { font-size: 12.5px; color: var(--white3); flex: 0 0 90px; }
.prog-track { flex: 1; height: 5px; background: rgba(255,255,255,.07); border-radius: 99px; overflow: hidden; }
.prog-fill  { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--gold), var(--gold2)); transition: width .7s ease; }
.prog-fill.gr { background: linear-gradient(90deg, var(--green), #5cf0c8); }
.prog-fill.bl { background: linear-gradient(90deg, var(--blue), #8ab8ff); }
.prog-pct  { font-size: 12px; font-weight: 600; color: var(--white3); flex: 0 0 36px; text-align: right; }

/* ══════════════ BMC CANVAS ══════════════ */
.bmc-canvas {
  display: grid;
  grid-template-areas:
    "kp ka vp cr cs"
    "kp kr vp ch cs"
    "co co co rv rv";
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr 1fr auto;
  gap: 8px; min-height: 400px;
}
.bmc-cell {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 1rem;
  transition: border-color .2s, background .2s;
}
.bmc-cell:hover { background: rgba(255,255,255,.05); border-color: var(--border2); }
[data-a="kp"] { grid-area: kp; }
[data-a="ka"] { grid-area: ka; }
[data-a="vp"] { grid-area: vp; border-color: rgba(76,175,80,.25); background: rgba(76,175,80,.06); }
[data-a="cr"] { grid-area: cr; }
[data-a="cs"] { grid-area: cs; }
[data-a="kr"] { grid-area: kr; }
[data-a="ch"] { grid-area: ch; }
[data-a="co"] { grid-area: co; background: var(--red-dim); border-color: rgba(240,96,96,.15); }
[data-a="rv"] { grid-area: rv; background: var(--green-dim); border-color: rgba(45,212,160,.15); }
.bmc-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white4); margin-bottom: 8px; display: block;
}
[data-a="vp"] .bmc-lbl { color: var(--gold); }
.bmc-items { list-style: none; padding: 0; }
.bmc-items li { font-size: 11.5px; color: var(--white2); padding: 3px 0; border-bottom: 1px solid var(--border); line-height: 1.45; }
.bmc-items li:last-child { border-bottom: none; }
.bmc-items li::before { content: '—'; margin-right: 6px; color: var(--white4); font-size: 10px; }

/* ══════════════ BOOKING CALENDAR ══════════════ */
.court-tabs { display: flex; gap: 6px; margin-bottom: 1rem; flex-wrap: wrap; }
.c-tab {
  padding: 6px 14px; border-radius: 99px; font-size: 12.5px; cursor: pointer;
  background: rgba(255,255,255,.04); color: var(--white3);
  border: 1px solid var(--border); transition: all .15s;
}
.c-tab:hover { border-color: var(--border2); color: var(--white2); }
.c-tab.active { background: var(--gold-dim); color: var(--gold2); border-color: rgba(76,175,80,.3); font-weight: 500; }

.cal-wrap { overflow-x: auto; padding-bottom: 4px; }
.cal-grid { display: grid; grid-template-columns: 68px repeat(8,1fr); gap: 4px; min-width: 520px; }
.cal-head {
  font-size: 10px; font-weight: 700; letter-spacing: .07em; color: var(--white4);
  text-align: center; padding: 4px 2px; text-transform: uppercase;
}
.cal-time {
  font-size: 10.5px; color: var(--white4); text-align: right; padding-right: 10px;
  display: flex; align-items: center; justify-content: flex-end; line-height: 1;
}
.cal-slot {
  height: 36px; border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; cursor: pointer; transition: all .12s;
  border: 1px solid transparent;
}
.cal-slot.fr { background: rgba(255,255,255,.03); color: var(--white4); border-color: var(--border); }
.cal-slot.fr:hover { background: var(--gold-dim); border-color: rgba(76,175,80,.3); color: var(--gold2); }
.cal-slot.bk { background: rgba(45,212,160,.1); border-color: rgba(45,212,160,.2); color: var(--green); }
.cal-slot.mn { background: var(--blue-dim); border-color: rgba(91,156,246,.2); color: var(--blue); }

/* ══════════════ BOOKING LIST ITEMS ══════════════ */
.bk-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.bk-item:last-child { border-bottom: none; }
.bk-av {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.bk-info { flex: 1; min-width: 0; }
.bk-name { font-size: 13.5px; font-weight: 500; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bk-detail { font-size: 12px; color: var(--white3); margin-top: 2px; }

/* ══════════════ EQUIPMENT TABLE ══════════════ */
.eq-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.eq-table th {
  text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border2);
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  color: var(--white4); text-transform: uppercase; white-space: nowrap;
}
.eq-table td { padding: 12px; border-bottom: 1px solid var(--border); vertical-align: middle; color: var(--white2); }
.eq-table tr:last-child td { border-bottom: none; }
.eq-table tr:hover td { background: rgba(255,255,255,.02); }
.eq-table tfoot td { font-weight: 700; font-size: 14px; border-top: 1px solid var(--border2); background: rgba(255,255,255,.02); color: var(--white); }
.eq-name  { font-weight: 500; color: var(--white); }
.eq-spec  { color: var(--white3); font-size: 12px; }
.eq-num   { text-align: center; }
.eq-price { text-align: right; white-space: nowrap; }
.eq-total { text-align: right; font-weight: 600; color: var(--gold2); white-space: nowrap; }

/* ══════════════ SPEC ROWS ══════════════ */
.spec-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.spec-row:last-child { border-bottom: none; }
.spec-k { color: var(--white3); }
.spec-v { font-weight: 500; color: var(--white); text-align: right; max-width: 56%; line-height: 1.4; }

/* ══════════════ RISK / OPPORTUNITY ══════════════ */
.risk-item { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.risk-item:last-child { border-bottom: none; }
.risk-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.risk-dot.rd { background: var(--red); }
.risk-dot.gr { background: var(--green); }
.risk-title { font-size: 13px; font-weight: 500; color: var(--white2); margin-bottom: 2px; }
.risk-desc  { font-size: 12px; color: var(--white3); line-height: 1.5; }

/* ══════════════ MODAL ══════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(8,11,22,.75); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--navy2); border: 1px solid var(--border2);
  border-radius: var(--r-lg); box-shadow: 0 24px 80px rgba(0,0,0,.6);
  width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  animation: mUp .22s ease;
}
.modal-box.wide { max-width: 780px; }
@keyframes mUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 1.75rem 1.75rem 0; }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--white); }
.modal-close {
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  color: var(--white3); width: 32px; height: 32px; border-radius: 8px;
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: all .15s;
}
.modal-close:hover { background: rgba(255,255,255,.1); color: var(--white); }
.modal-body   { padding: 1.75rem; }
.modal-footer { padding: 0 1.75rem 1.75rem; display: flex; gap: 10px; justify-content: flex-end; }
.price-preview {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--gold-dim); border: 1px solid rgba(76,175,80,.2);
  border-radius: var(--r-sm); padding: 14px 18px; margin-top: 1.25rem;
}
.price-lbl { font-size: 12.5px; color: var(--white3); }
.price-val { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--gold2); }

/* ══════════════ TOAST ══════════════ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--charcoal); color: var(--white);
  padding: 13px 20px; border-radius: var(--r-sm); font-size: 13.5px; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,.5); border: 1px solid var(--border2);
  transform: translateY(80px); opacity: 0; transition: all .3s ease; z-index: 300;
  max-width: 320px; display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.ok::before  { content: '✓'; color: var(--green); font-weight: 700; }
.toast.err::before { content: '✗'; color: var(--red); font-weight: 700; }

/* ══════════════ HERO HOME ══════════════ */
.hero-banner {
  background: linear-gradient(135deg, var(--navy3) 0%, var(--charcoal) 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 3rem 3.5rem; margin-bottom: 2rem;
  position: relative; overflow: hidden;
}
.hero-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-banner::after {
  content: ''; position: absolute; bottom: -40px; left: 40%;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,160,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow span { display: block; width: 24px; height: 1px; background: var(--gold); opacity: .5; }
.hero-h {
  font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 400;
  color: var(--white); line-height: 1.1; margin-bottom: 1rem;
  letter-spacing: -.02em; max-width: 520px;
}
.hero-h em { font-style: italic; color: var(--gold2); }
.hero-p { font-size: 15px; color: var(--white3); line-height: 1.7; max-width: 480px; margin-bottom: 2rem; }
.hero-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: .75rem; position: relative; z-index: 1; }
.step-card {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 1.25rem 1rem;
  transition: border-color .2s, background .2s, transform .2s; cursor: pointer;
}
.step-card:hover { border-color: rgba(76,175,80,.25); background: var(--gold-dim); transform: translateY(-2px); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--gold); opacity: .6; line-height: 1; margin-bottom: .5rem; }
.step-t   { font-size: 13px; font-weight: 500; color: var(--white2); margin-bottom: 4px; }
.step-d   { font-size: 11.5px; color: var(--white3); line-height: 1.5; }

/* ══════════════ HOME NOTICE ══════════════ */
.key-notice {
  background: rgba(240,160,80,.07); border: 1px solid rgba(240,160,80,.2);
  border-radius: var(--r); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.key-notice-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--amber-dim); border: 1px solid rgba(240,160,80,.2);
  display: flex; align-items: center; justify-content: center; color: var(--amber); font-size: 16px;
}
.key-notice p { font-size: 13.5px; color: var(--white3); line-height: 1.6; flex: 1; }
.key-notice strong { color: var(--white2); }

/* ══════════════ SETTINGS ══════════════ */
.settings-wrap { max-width: 580px; }
.api-key-visual { position: relative; }
.api-key-visual input { padding-right: 44px; }
.toggle-eye {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--white3); transition: color .15s;
}
.toggle-eye:hover { color: var(--white2); }
.info-steps {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 1.5rem; margin-top: 1.5rem;
}
.info-steps h4  { font-size: 13px; font-weight: 600; color: var(--white2); margin-bottom: .75rem; }
.info-steps ol  { padding-left: 18px; }
.info-steps li  { font-size: 13px; color: var(--white3); line-height: 2.2; padding: .1rem 0; }
.info-steps a   { color: var(--gold2); text-decoration: none; }
.info-steps a:hover { text-decoration: underline; }

/* ══════════════ LEGEND ══════════════ */
.legend { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.leg-dot { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.leg-txt { font-size: 11.5px; color: var(--white3); }
