/* ═══════════════════════════════════
   PLATFORM — css/platform.css
   Layout: Top bar → KPI strip → HUB modules → Content
═══════════════════════════════════ */

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ════════════════════════════════════
   TOP BAR
════════════════════════════════════ */
.topbar {
  height: 58px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--b1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.tb-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.tb-logo-icon { width: 34px; height: 34px; }
.tb-logo-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: 0.01em;
}
.tb-logo-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-3);
  display: block;
  margin-top: 1px;
}

/* center: client chip */
.tb-center {
  display: flex;
  align-items: center;
  gap: 10px;
}
.client-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-soft);
  border: 1px solid var(--b2);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
}
.client-chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-3);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(85,160,112,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(85,160,112,0); }
}
.client-chip-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--t1);
}
.client-chip-type {
  font-size: 10.5px;
  color: var(--t3);
}

/* right: actions + user */
.tb-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tb-icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--b1);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--t3);
  transition: all 0.15s;
  position: relative;
  text-decoration: none;
}
.tb-icon-btn:hover {
  background: var(--green-7);
  border-color: var(--green-5);
  color: var(--green-1);
}
.tb-icon-btn svg { width: 17px; height: 17px; }
.tb-notif-dot {
  position: absolute;
  top: 6px; right: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  border: 1.5px solid var(--bg-panel);
}

.tb-user {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 12px 5px 6px;
  border: 1px solid var(--b1);
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  transition: all 0.15s;
}
.tb-user:hover { background: var(--bg-soft); border-color: var(--b2); }
.tb-user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-bark-2);
  color: var(--t-inv);
  font-size: 10.5px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.tb-user-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--t1);
}

/* ════════════════════════════════════
   KPI STRIP
   Full-width headline metrics
════════════════════════════════════ */
.kpi-strip {
  background: var(--bg-bark);
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}

/* Background leaf motif */
.kpi-strip::before {
  content: '';
  position: absolute;
  right: -60px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,96,64,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.kpi-item {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.kpi-item:last-child { border-right: none; }

.kpi-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-4);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.kpi-label-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-4);
  flex-shrink: 0;
}

.kpi-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.kpi-value sup {
  font-size: 16px;
  font-weight: 400;
  color: var(--green-4);
  vertical-align: super;
  font-family: var(--font-ui);
  letter-spacing: 0;
}

.kpi-delta {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--stone-4);
}
.kpi-delta .up { color: var(--green-4); }
.kpi-delta .warn { color: var(--gold-3); }

/* Client welcome in strip */
.kpi-welcome {
  padding: 20px 28px;
  min-width: 280px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.kpi-welcome-hello {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-4);
  margin-bottom: 4px;
}
.kpi-welcome-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.kpi-welcome-co {
  font-size: 12px;
  color: var(--green-4);
  font-weight: 500;
  margin-top: 2px;
}


/* ════════════════════════════════════
   MODULE HUB  ← the key element
   Like a control panel, centered on page
════════════════════════════════════ */
.hub-wrap {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--b1);
  padding: 20px 36px 22px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  overflow-x: auto;
}

.hub-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 16px 12px 14px;
  border-radius: var(--r-lg);
  cursor: pointer;
  border: 1.5px solid var(--b2);
  background: var(--bg-soft);
  transition: all 0.22s cubic-bezier(.2,.8,.3,1);
  min-width: 100px;
  position: relative;
  user-select: none;
  text-decoration: none;
  /* different heights for visual rhythm */
}
.hub-tile:nth-child(2) { margin-bottom: 8px; }
.hub-tile:nth-child(4) { margin-bottom: 14px; }
.hub-tile:nth-child(6) { margin-bottom: 6px; }

.hub-tile:hover {
  background: var(--bg-panel);
  border-color: var(--green-4);
  box-shadow: var(--s2);
  transform: translateY(-4px);
}

.hub-tile.active {
  background: var(--bg-bark);
  border-color: var(--bg-bark);
  box-shadow: 0 8px 28px rgba(18,32,24,0.28);
  transform: translateY(-2px);
}

/* Active indicator line on top */
.hub-tile.active::before {
  content: '';
  position: absolute;
  top: 0; left: 16%; right: 16%;
  height: 3px;
  background: var(--green-3);
  border-radius: 0 0 3px 3px;
  top: -1px;
}

/* Count badge on tile */
.hub-tile-badge {
  position: absolute;
  top: 10px; right: 10px;
  min-width: 18px; height: 18px;
  background: var(--green-2);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
  line-height: 1;
}
.hub-tile.active .hub-tile-badge {
  background: var(--green-4);
  color: var(--bg-bark);
}

/* Icon container */
.hub-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--bg-panel);
  border: 1px solid var(--b1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  transition: all 0.22s;
  flex-shrink: 0;
}
.hub-tile:hover .hub-icon-wrap {
  background: var(--green-7);
  border-color: var(--green-5);
}
.hub-tile.active .hub-icon-wrap {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.hub-icon-wrap svg {
  width: 22px; height: 22px;
  transition: color 0.22s;
  color: var(--green-2);
}
.hub-tile.active .hub-icon-wrap svg {
  color: var(--green-4);
}

/* Tile label */
.hub-tile-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--t2);
  letter-spacing: 0.01em;
  text-align: center;
  transition: color 0.22s;
}
.hub-tile.active .hub-tile-label { color: var(--t-inv); }
.hub-tile:hover .hub-tile-label { color: var(--t1); }

/* Tile status line */
.hub-tile-status {
  font-size: 10px;
  color: var(--t4);
  margin-top: 3px;
  font-weight: 500;
  text-align: center;
  transition: color 0.22s;
}
.hub-tile.active .hub-tile-status { color: rgba(232,244,236,0.55); }

/* Hub separator */
.hub-sep {
  width: 1px;
  height: 60px;
  background: var(--b1);
  margin: 0 6px;
  align-self: center;
  flex-shrink: 0;
}


/* ════════════════════════════════════
   CONTENT AREA
════════════════════════════════════ */
.content-wrap {
  flex: 1;
  padding: 28px 36px 40px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* Section header */
.section-hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-hd-text {}
.section-hd-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.02em;
}
.section-hd-sub {
  font-size: 13px;
  color: var(--t3);
  margin-top: 3px;
  font-weight: 400;
}
.section-hd-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

/* View visibility */
.view { display: none; }
.view.active { display: block; }


/* ════════════════════════════════════
   DASHBOARD CARDS
════════════════════════════════════ */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 340px;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Panel base */
.panel {
  background: var(--bg-panel);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  box-shadow: var(--s1);
  overflow: hidden;
}
.panel-hd {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--b1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.panel-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
}
.panel-action {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
  text-decoration: none;
}
.panel-action:hover { color: var(--bg-bark); }

/* Campaign list in panel */
.camp-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 22px;
  border-bottom: 1px solid var(--b1);
  cursor: pointer;
  transition: background 0.14s;
}
.camp-row:last-child { border-bottom: none; }
.camp-row:hover { background: var(--bg-soft); }

.camp-status-pill {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.csp-active  { background: var(--green-3); }
.csp-pending { background: var(--gold-3); }
.csp-done    { background: var(--stone-4); }

.camp-body { flex: 1; min-width: 0; }
.camp-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.camp-meta {
  font-size: 11.5px;
  color: var(--t3);
  margin-top: 2px;
}

.camp-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

/* Progress ring */
.ring-wrap {
  display: flex; align-items: center; justify-content: center;
}
svg.ring { width: 38px; height: 38px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: var(--stone-6); stroke-width: 3.5; }
.ring-fill {
  fill: none;
  stroke: var(--green-3);
  stroke-width: 3.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}
.ring-text-wrap {
  position: relative;
}
.ring-group {
  display: flex; align-items: center; gap: 8px;
}
.ring-label {
  font-size: 11px; font-weight: 700;
  color: var(--t1);
}

/* Timeline feed */
.feed-item {
  display: flex;
  gap: 12px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--b1);
}
.feed-item:last-child { border-bottom: none; }

.feed-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feed-icon svg { width: 13px; height: 13px; }
.fi-green { background: var(--green-6); color: var(--green-1); }
.fi-gold  { background: var(--gold-5);  color: var(--gold-1); }
.fi-stone { background: var(--stone-6); color: var(--stone-2); }
.fi-red   { background: var(--red-bg);  color: var(--red); }

.feed-content {}
.feed-text {
  font-size: 12.5px;
  color: var(--t2);
  line-height: 1.5;
}
.feed-text strong { color: var(--t1); font-weight: 600; }
.feed-time {
  font-size: 11px;
  color: var(--t4);
  margin-top: 2px;
}

/* Compliance score */
.score-box {
  padding: 22px;
  text-align: center;
  border-bottom: 1px solid var(--b1);
}
.score-ring-wrap {
  position: relative;
  width: 100px;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
}
.score-svg { width: 100px; height: 100px; transform: rotate(-90deg); }
.score-bg { fill: none; stroke: var(--stone-6); stroke-width: 6; }
.score-fill {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s ease;
}
.score-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.score-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--t1);
  line-height: 1;
}
.score-pct {
  font-size: 11px;
  color: var(--t3);
  font-weight: 600;
}
.score-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Next measurement card */
.next-box {
  padding: 18px 22px;
}
.next-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t4);
  margin-bottom: 10px;
}
.next-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--b1);
}
.next-item:last-child { border-bottom: none; }
.next-date {
  background: var(--bg-soft);
  border: 1px solid var(--b1);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
  flex-shrink: 0;
}
.next-day {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
  line-height: 1;
}
.next-mon {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--t4);
}
.next-desc {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--t1);
}
.next-loc {
  font-size: 11.5px;
  color: var(--t3);
  margin-top: 2px;
}


/* ════════════════════════════════════
   CAMPAIGNS TABLE VIEW
════════════════════════════════════ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.search-wrap {
  position: relative;
  flex: 1;
  max-width: 300px;
}
.search-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--t4);
  pointer-events: none;
}
.search-icon svg { width: 15px; height: 15px; }
.search-field {
  width: 100%;
  background: var(--bg-panel);
  border: 1.5px solid var(--b2);
  border-radius: var(--r-md);
  padding: 9px 14px 9px 38px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--t1);
  outline: none;
  transition: border-color 0.18s;
}
.search-field::placeholder { color: var(--t4); }
.search-field:focus { border-color: var(--green-3); }

.filter-pill {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--t3);
  background: var(--bg-panel);
  border: 1.5px solid var(--b2);
  cursor: pointer;
  transition: all 0.16s;
  font-family: var(--font-ui);
}
.filter-pill:hover, .filter-pill.on {
  background: var(--green-7);
  border-color: var(--green-4);
  color: var(--green-1);
}

.table-card {
  background: var(--bg-panel);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  box-shadow: var(--s1);
  overflow: hidden;
}
.table-card table {
  width: 100%;
  border-collapse: collapse;
}
.table-card thead tr { background: var(--bg-soft); }
.table-card th {
  padding: 11px 18px;
  text-align: left;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t4);
  border-bottom: 1px solid var(--b1);
  white-space: nowrap;
}
.table-card td {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--t2);
  border-bottom: 1px solid var(--b1);
  vertical-align: middle;
}
.table-card tr:last-child td { border-bottom: none; }
.table-card tr:hover td { background: var(--bg-soft); }

.td-primary {
  font-weight: 700;
  color: var(--t1);
  font-size: 13.5px;
}
.td-code {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  background: var(--stone-6);
  color: var(--stone-2);
  padding: 3px 8px;
  border-radius: 5px;
  white-space: nowrap;
}
.td-progress {
  min-width: 100px;
}
.mini-prog {
  height: 5px;
  background: var(--stone-6);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}
.mini-prog-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green-4), var(--green-2));
}
.td-prog-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--t1);
}

/* Row action button */
.row-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green-1);
  background: var(--green-7);
  border: 1px solid var(--green-5);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-family: var(--font-ui);
  transition: all 0.15s;
  text-decoration: none;
}
.row-btn:hover {
  background: var(--green-6);
  border-color: var(--green-3);
}
.row-btn svg { width: 11px; height: 11px; }


/* ════════════════════════════════════
   REPORTS VIEW
════════════════════════════════════ */
.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
}
.report-card {
  background: var(--bg-panel);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  box-shadow: var(--s1);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.report-card:hover {
  border-color: var(--green-4);
  box-shadow: var(--s2);
  transform: translateY(-3px);
}
.report-top {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--b1);
}
.report-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.report-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.ri-green { background: var(--green-7); }
.ri-gold  { background: var(--gold-5); }
.ri-stone { background: var(--stone-6); }
.ri-blue  { background: var(--blue-bg); }
.report-icon svg { width: 20px; height: 20px; }

.report-new-badge {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-1);
  background: var(--green-6);
  border: 1px solid var(--green-5);
  padding: 2px 8px;
  border-radius: 20px;
}

.report-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 4px;
  line-height: 1.3;
}
.report-camp {
  font-size: 11.5px;
  color: var(--t3);
}
.report-bottom {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.report-info {
  font-size: 11px;
  color: var(--t4);
}
.report-dl {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-2);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  transition: color 0.15s;
}
.report-dl:hover { color: var(--bg-bark); }
.report-dl svg { width: 14px; height: 14px; }


/* ════════════════════════════════════
   MONITORING VIEW
════════════════════════════════════ */
.monitor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.monitor-card {
  background: var(--bg-panel);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: var(--s1);
}
.mc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mc-param {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t4);
}
.mc-status {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.mcs-ok   { background: var(--green-3); }
.mcs-warn { background: var(--gold-3); }
.mcs-over { background: var(--red); }

.mc-value {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--t1);
  line-height: 1;
  letter-spacing: -0.03em;
}
.mc-unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--t3);
  font-family: var(--font-ui);
  letter-spacing: 0;
}
.mc-limit {
  font-size: 11px;
  color: var(--t4);
  margin: 4px 0 12px;
}
.mc-bar {
  height: 5px;
  background: var(--stone-6);
  border-radius: 3px;
  overflow: hidden;
}
.mc-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.2s ease;
}
.mcb-ok   { background: linear-gradient(90deg, var(--green-4), var(--green-2)); }
.mcb-warn { background: linear-gradient(90deg, var(--gold-3), var(--gold-2)); }
.mcb-over { background: var(--red); }

.mc-source {
  font-size: 11.5px;
  color: var(--t3);
  margin-top: 8px;
  font-weight: 500;
}


/* ════════════════════════════════════
   SOLICITUDES FORM VIEW
════════════════════════════════════ */
.sol-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 16px;
}
.form-card {
  background: var(--bg-panel);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  box-shadow: var(--s1);
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--t2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1.5px solid var(--b2);
  border-radius: var(--r-md);
  padding: 11px 14px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--t1);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--t4); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-3);
  background: var(--bg-panel);
  box-shadow: 0 0 0 3px rgba(85,160,112,0.12);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }