/* ─── SPECS ─── */
.specs {
  background: #0a0a0a;
}

.specs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.specs-table {
  border: 1px solid #2a2d32;
}

.specs-row {
  display: flex;
  border-bottom: 1px solid #2a2d32;
  transition: background 0.2s;
  background: #0a0a0a;
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row:hover {
  background: rgba(232, 133, 26, 0.03);
}

.specs-key {
  flex: 0 0 55%;
  padding: 14px 20px;
  font-size: 13px;
  color: var(--muted);
  border-right: 1px solid #2a2d32;
  font-weight: 500;
  background: #0a0a0a;
}

.specs-val {
  flex: 1;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: #0a0a0a;
}

.specs-highlight {
  background: rgba(232, 133, 26, 0.05) !important;
}

.specs-highlight .specs-key {
  background: transparent;
}

.specs-highlight .specs-val {
  color: var(--amber);
  background: transparent;
}

.specs-visual {
  position: sticky;
  top: 120px;
}

.specs-badge {
  display: inline-block;
  background: rgba(232, 133, 26, 0.1);
  border: 1px solid rgba(232, 133, 26, 0.3);
  color: var(--amber);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.no-reg-block {
  border: 1px solid #2a2d32;
  padding: 32px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.no-reg-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--amber), transparent);
}

.no-reg-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 12px;
}

.no-reg-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
